Fix regex for PARALLEL aggregations
Worked in pg10, but it didn't in pg9.5
This commit is contained in:
@@ -464,8 +464,8 @@ CREATE AGGREGATE _cdb_mode(anyelement) (
|
||||
SFUNC=array_append,
|
||||
STYPE=anyarray,
|
||||
FINALFUNC=_cdb_mode_of_array,
|
||||
INITCOND='{}',
|
||||
PARALLEL = SAFE
|
||||
PARALLEL = SAFE,
|
||||
INITCOND='{}'
|
||||
);
|
||||
|
||||
-- SQL Aggregation expression for a datase attribute
|
||||
|
||||
Reference in New Issue
Block a user