From d95425c8b9d3ea1681bd91b76ce73be95ca5ee21 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 13 Apr 2014 00:01:46 -0400 Subject: Provide moving-aggregate support for boolean aggregates. David Rowley and Florian Pflug, reviewed by Dean Rasheed --- src/include/utils/builtins.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/include/utils/builtins.h') diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index f7cc1af2caf..11ff4fdef0c 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -121,6 +121,10 @@ extern Datum boolle(PG_FUNCTION_ARGS); extern Datum boolge(PG_FUNCTION_ARGS); extern Datum booland_statefunc(PG_FUNCTION_ARGS); extern Datum boolor_statefunc(PG_FUNCTION_ARGS); +extern Datum bool_accum(PG_FUNCTION_ARGS); +extern Datum bool_accum_inv(PG_FUNCTION_ARGS); +extern Datum bool_alltrue(PG_FUNCTION_ARGS); +extern Datum bool_anytrue(PG_FUNCTION_ARGS); extern bool parse_bool(const char *value, bool *result); extern bool parse_bool_with_len(const char *value, size_t len, bool *result); -- cgit v1.2.3