mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Provide moving-aggregate support for boolean aggregates.
David Rowley and Florian Pflug, reviewed by Dean Rasheed
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user