summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2015-06-24 06:58:21 +0000
committerPavan Deolasee2015-06-24 06:58:21 +0000
commit29d614d33d19b0d1cc238cd977c16be31a687880 (patch)
tree60b97184291582a81a63742ededa530a0a24a01e
parent3d552f9873ac8f1ca06b4bcb9db3c91550eb1024 (diff)
Correct proargtypes and prorettype for numeric_collect function
We'd to change the OID for numeric_agg_state type because it conflicted with another OID post-merge. But we forgot to change the same for this pg_proc entry. This patch corrects that
-rw-r--r--src/include/catalog/pg_proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index d8ccc87e4a..be5e9554fc 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -2616,7 +2616,7 @@ DESCR("aggregate transition function");
#ifdef PGXC
DATA(insert OID = 7000 ( float8_collect PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 1022 "1022 1022" _null_ _null_ _null_ _null_ _null_ float8_collect _null_ _null_ _null_ ));
DESCR("aggregate collection function");
-DATA(insert OID = 7002 ( numeric_collect PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 6013 "6013 6013" _null_ _null_ _null_ _null_ _null_ numeric_collect _null_ _null_ _null_ ));
+DATA(insert OID = 7002 ( numeric_collect PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 7018 "7018 7018" _null_ _null_ _null_ _null_ _null_ numeric_collect _null_ _null_ _null_ ));
DESCR("aggregate collection function");
DATA(insert OID = 7003 ( interval_collect PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 1187 "1187 1187" _null_ _null_ _null_ _null_ _null_ interval_collect _null_ _null_ _null_ ));
DESCR("aggregate transition function");