Add bit_ and bool_ aggregates to AggregateType

pull/2030/head
Marco Slot 2018-02-27 23:43:25 +01:00
parent c723a1fa32
commit ef5ff7eb12
1 changed files with 6 additions and 1 deletions

View File

@ -61,7 +61,12 @@ typedef enum
AGGREGATE_JSONB_AGG = 7, AGGREGATE_JSONB_AGG = 7,
AGGREGATE_JSONB_OBJECT_AGG = 8, AGGREGATE_JSONB_OBJECT_AGG = 8,
AGGREGATE_JSON_AGG = 9, AGGREGATE_JSON_AGG = 9,
AGGREGATE_JSON_OBJECT_AGG = 10 AGGREGATE_JSON_OBJECT_AGG = 10,
AGGREGATE_BIT_AND = 11,
AGGREGATE_BIT_OR = 12,
AGGREGATE_BOOL_AND = 13,
AGGREGATE_BOOL_OR = 14,
AGGREGATE_EVERY = 15
} AggregateType; } AggregateType;