| 9 | I'm super puzzled though how this pull request ever made it thru our regression. |
| 10 | |
| 11 | When I run I get: |
| 12 | |
| 13 | |
| 14 | {{{ |
| 15 | make[1]: Entering directory '/projects/postgis/branches/2.4/postgis' |
| 16 | /bin/perl ../utils/create_undef.pl postgis.sql 95 > uninstall_postgis.sql |
| 17 | Couldn't parse AGGREGATE line: CREATE AGGREGATE ST_Extent( |
| 18 | sfunc = ST_CombineBBox, |
| 19 | finalfunc = box2d, |
| 20 | stype = box3d |
| 21 | ); |
| 22 | }}} |
| 23 | |
| 24 | |
| 25 | even when against lower than 9.6, presumably because I removed the basetype and our perl script |
| 26 | |
| 27 | |
| 28 | {{{ |
| 29 | /create aggregate\s*([\w\.]+)\s*\(\s*.*basetype = ([\w\.]+)/ism ) |
| 30 | }}} |
| 31 | |
| 32 | |
| 33 | I'm guessing the reason I am triggering this error is because I put in a |
| 34 | |
| 35 | |
| 36 | {{{ |
| 37 | -- Changed: 2.3.1 to support PostgreSQL 9.6 parallel safe |
| 38 | }}} |
| 39 | |
| 40 | triggering the uninstall script to actually write in a drop and recreate aggregate. |