diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-12-23 08:40:25 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-12-23 08:40:25 -0500 |
commit | d5448c7d31b5af66a809e6580bae9bd31448bfa7 (patch) | |
tree | 6e10ff9bd80f51aedad9abf3c037195f284a1254 /src/include/utils/builtins.h | |
parent | 0510b62d91151b9d8c1fe1aa15c9cf3ffe9bf25b (diff) | |
download | postgresql-d5448c7d31b5af66a809e6580bae9bd31448bfa7.tar.gz postgresql-d5448c7d31b5af66a809e6580bae9bd31448bfa7.zip |
Add bytea_agg, parallel to string_agg.
Pavel Stehule
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 217cd61c849..aa36db630f4 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -769,6 +769,8 @@ extern Datum unknownsend(PG_FUNCTION_ARGS); extern Datum pg_column_size(PG_FUNCTION_ARGS); +extern Datum bytea_agg_transfn(PG_FUNCTION_ARGS); +extern Datum bytea_agg_finalfn(PG_FUNCTION_ARGS); extern Datum string_agg_transfn(PG_FUNCTION_ARGS); extern Datum string_agg_finalfn(PG_FUNCTION_ARGS); |