mirror of https://github.com/citusdata/citus.git
Add bit_ and bool_ aggregates to AggregateType
parent
c723a1fa32
commit
ef5ff7eb12
|
@ -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;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue