提交 50ecd093 编写于 作者: D Daniel Gustafsson 提交者: Jimmy Yih

Fix typos in the pg_proc catalog

The catullus script had not been used to synchronize all pg_proc
changes into the catalog, so ensure we are in sync before we cut
Beta and (mostly) freeze the catalog. Also fix a set of typos in
DESC properties.
上级 e01b1731
......@@ -263,7 +263,7 @@
CREATE FUNCTION gp_rle_type_decompress(internal, int4, internal, int4, internal, internal) RETURNS void LANGUAGE internal IMMUTABLE AS 'rle_type_decompress' WITH(OID=9917, DESCRIPTION="Type specific RLE decompressor");
CREATE FUNCTION gp_rle_type_validator(internal) RETURNS void LANGUAGE internal IMMUTABLE AS 'rle_type_validator' WITH(OID=9923, DESCRIPTION="Type speific RLE compression validator");
CREATE FUNCTION gp_rle_type_validator(internal) RETURNS void LANGUAGE internal IMMUTABLE AS 'rle_type_validator' WITH(OID=9923, DESCRIPTION="Type specific RLE compression validator");
CREATE FUNCTION gp_dummy_compression_constructor(internal, internal, bool) RETURNS internal LANGUAGE internal VOLATILE AS 'dummy_compression_constructor' WITH (OID=7064, DESCRIPTION="Dummy compression destructor");
......@@ -407,19 +407,19 @@
CREATE FUNCTION complex_gte(complex, complex) RETURNS bool LANGUAGE internal IMMUTABLE STRICT AS 'complex_gte' WITH (OID=7596);
CREATE FUNCTION gp_hyperloglog_in(value cstring) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_in' WITH (OID=7158, DESCRIPTION="Decode a bytea into gp_hyperloglog_counter");
CREATE FUNCTION gp_hyperloglog_in(value cstring) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_in' WITH (OID=7158, DESCRIPTION="Decode a bytea into gp_hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_out(counter gp_hyperloglog_estimator) RETURNS cstring LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_out' WITH (OID=7159, DESCRIPTION="Encode an gp_hyperloglog_counter into a bytea");
CREATE FUNCTION gp_hyperloglog_out(counter gp_hyperloglog_estimator) RETURNS cstring LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_out' WITH (OID=7159, DESCRIPTION="Encode a gp_hyperloglog counter into a bytea");
CREATE FUNCTION gp_hyperloglog_comp(counter gp_hyperloglog_estimator) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_comp' WITH (OID=7160, DESCRIPTION="Compress an hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_comp(counter gp_hyperloglog_estimator) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_comp' WITH (OID=7160, DESCRIPTION="Compress a gp_hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_merge(estimator1 gp_hyperloglog_estimator, estimator2 gp_hyperloglog_estimator) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'gp_hyperloglog_merge' WITH (OID=7161, DESCRIPTION="Merge two hyperloglog counters into one");
CREATE FUNCTION gp_hyperloglog_merge(estimator1 gp_hyperloglog_estimator, estimator2 gp_hyperloglog_estimator) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'gp_hyperloglog_merge' WITH (OID=7161, DESCRIPTION="Merge two gp_hyperloglog counters into one");
CREATE FUNCTION gp_hyperloglog_get_estimate(counter gp_hyperloglog_estimator) RETURNS float8 LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_get_estimate' WITH (OID=7162, DESCRIPTION="Estimates the number of distinct values stored in an hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_get_estimate(counter gp_hyperloglog_estimator) RETURNS float8 LANGUAGE internal IMMUTABLE STRICT AS 'gp_hyperloglog_get_estimate' WITH (OID=7162, DESCRIPTION="Estimates the number of distinct values stored in a gp_hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_add_item_agg_default(counter gp_hyperloglog_estimator, item anyelement) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'gp_hyperloglog_add_item_agg_default' WITH (OID=7163, DESCRIPTION="Includes a data value into a hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_add_item_agg_default(counter gp_hyperloglog_estimator, item anyelement) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'gp_hyperloglog_add_item_agg_default' WITH (OID=7163, DESCRIPTION="Includes a data value into a gp_hyperloglog counter");
CREATE FUNCTION gp_hyperloglog_accum(anyelement) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'aggregate_dummy' WITH (OID=7164, proisagg="t", DESCRIPTION="Adds every data value to a hyperloglog counter and returns the counter");
CREATE FUNCTION gp_hyperloglog_accum(anyelement) RETURNS gp_hyperloglog_estimator LANGUAGE internal IMMUTABLE AS 'aggregate_dummy' WITH (OID=7164, proisagg="t", DESCRIPTION="Adds every data value to a gp_hyperloglog counter and returns the counter");
CREATE FUNCTION pg_get_table_distributedby(oid) RETURNS text LANGUAGE internal STABLE STRICT AS 'pg_get_table_distributedby' WITH (OID=6232, DESCRIPTION="deparse DISTRIBUTED BY clause for a given relation");
......
......@@ -22,7 +22,7 @@
WARNING: DO NOT MODIFY THE FOLLOWING SECTION:
Generated by catullus.pl version 8
on Wed Feb 6 16:14:01 2019
on Fri Mar 15 22:07:45 2019
Please make your changes in pg_proc.sql
*/
......@@ -537,7 +537,7 @@ DESCR("Type specific RLE decompressor");
/* gp_rle_type_validator(internal) => void */
DATA(insert OID = 9923 ( gp_rle_type_validator PGNSP PGUID 12 1 0 0 0 f f f f f f i 1 0 2278 "2281" _null_ _null_ _null_ _null_ rle_type_validator _null_ _null_ _null_ n a ));
DESCR("Type speific RLE compression validator");
DESCR("Type specific RLE compression validator");
/* gp_dummy_compression_constructor(internal, internal, bool) => internal */
DATA(insert OID = 7064 ( gp_dummy_compression_constructor PGNSP PGUID 12 1 0 0 0 f f f f f f v 3 0 2281 "2281 2281 16" _null_ _null_ _null_ _null_ dummy_compression_constructor _null_ _null_ _null_ n a ));
......@@ -807,31 +807,31 @@ DATA(insert OID = 7596 ( complex_gte PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 1
/* gp_hyperloglog_in(value cstring) => gp_hyperloglog_estimator */
DATA(insert OID = 7158 ( gp_hyperloglog_in PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 7157 "2275" _null_ _null_ "{value}" _null_ gp_hyperloglog_in _null_ _null_ _null_ n a ));
DESCR("Decode a bytea into a hyperloglog counter");
DESCR("Decode a bytea into gp_hyperloglog counter");
/* gp_hyperloglog_out(counter gp_hyperloglog_estimator) => cstring */
DATA(insert OID = 7159 ( gp_hyperloglog_out PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 2275 "7157" _null_ _null_ "{counter}" _null_ gp_hyperloglog_out _null_ _null_ _null_ n a ));
DESCR("Encode a hyperloglog counter into a bytea");
DESCR("Encode a gp_hyperloglog counter into a bytea");
/* gp_hyperloglog_comp(counter gp_hyperloglog_estimator) => gp_hyperloglog_estimator */
DATA(insert OID = 7160 ( gp_hyperloglog_comp PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 7157 "7157" _null_ _null_ "{counter}" _null_ gp_hyperloglog_comp _null_ _null_ _null_ n a ));
DESCR("Compress a hyperloglog counter");
DESCR("Compress a gp_hyperloglog counter");
/* gp_hyperloglog_merge(estimator1 gp_hyperloglog_estimator, estimator2 gp_hyperloglog_estimator) => gp_hyperloglog_estimator */
DATA(insert OID = 7161 ( gp_hyperloglog_merge PGNSP PGUID 12 1 0 0 0 f f f f f f i 2 0 7157 "7157 7157" _null_ _null_ "{estimator1,estimator2}" _null_ gp_hyperloglog_merge _null_ _null_ _null_ n a ));
DESCR("Merge two hyperloglog counters into one");
DESCR("Merge two gp_hyperloglog counters into one");
/* gp_hyperloglog_get_estimate(counter gp_hyperloglog_estimator) => float8 */
DATA(insert OID = 7162 ( gp_hyperloglog_get_estimate PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 701 "7157" _null_ _null_ "{counter}" _null_ gp_hyperloglog_get_estimate _null_ _null_ _null_ n a ));
DESCR("Estimates the number of distinct values stored in an hyperloglog counter");
DESCR("Estimates the number of distinct values stored in a gp_hyperloglog counter");
/* gp_hyperloglog_add_item_agg_default(counter gp_hyperloglog_estimator, item anyelement) => gp_hyperloglog_estimator */
DATA(insert OID = 7163 ( gp_hyperloglog_add_item_agg_default PGNSP PGUID 12 1 0 0 0 f f f f f f i 2 0 7157 "7157 2283" _null_ _null_ "{counter,item}" _null_ gp_hyperloglog_add_item_agg_default _null_ _null_ _null_ n a ));
DESCR("Includes a data value into a hyperloglog counter");
DESCR("Includes a data value into a gp_hyperloglog counter");
/* gp_hyperloglog_accum(anyelement) => gp_hyperloglog_estimator */
DATA(insert OID = 7164 ( gp_hyperloglog_accum PGNSP PGUID 12 1 0 0 0 t f f f f f i 1 0 7157 "2283" _null_ _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ n a ));
DESCR("Adds every data value to a hyperloglog counter and returns the counter");
DESCR("Adds every data value to a gp_hyperloglog counter and returns the counter");
/* pg_get_table_distributedby(oid) => text */
DATA(insert OID = 6232 ( pg_get_table_distributedby PGNSP PGUID 12 1 0 0 0 f f f f t f s 1 0 25 "26" _null_ _null_ _null_ _null_ pg_get_table_distributedby _null_ _null_ _null_ n a ));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册