Re: [GENERAL] Сreate parallel aggregate

2016-09-29 Thread Grigory Smolkin
Thank you for the detailed answer. I think a less obscure error message would be a good thing. On 09/29/2016 05:26 PM, Tom Lane wrote: Grigory Smolkin writes: I was trying to create a parallel aggregate with base_type parameter and failed postgres=# CREATE AGGREGATE ST_Extent_parallel (

Re: [GENERAL] Сreate parallel aggregate

2016-09-29 Thread Tom Lane
Grigory Smolkin writes: > I was trying to create a parallel aggregate with base_type parameter and > failed > postgres=# CREATE AGGREGATE ST_Extent_parallel ( > sfunc = ST_CombineBBox, > combinefunc = ST_CombineBBox, > finalfunc = box2d, > stype = box3d, >

[GENERAL] Сreate parallel aggregate

2016-09-29 Thread Grigory Smolkin
Hello, everyone! I was trying to create a parallel aggregate with base_type parameter and failed postgres=# CREATE AGGREGATE ST_Extent_parallel ( sfunc = ST_CombineBBox, combinefunc = ST_CombineBBox, finalfunc = box2d, stype = box3d, basetype = geometry,