Changes between Initial Version and Version 1 of Ticket #3650, comment 4


Ignore:
Timestamp:
Nov 26, 2016, 10:13:26 AM (7 years ago)
Author:
robe

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3650, comment 4

    initial v1  
    77https://www.postgresql.org/docs/9.2/static/sql-createaggregate.html
    88
     9I'm super puzzled though how this pull request ever made it thru our regression.
     10
     11When I run I get:
     12
     13
     14{{{
     15make[1]: Entering directory '/projects/postgis/branches/2.4/postgis'
     16/bin/perl ../utils/create_undef.pl postgis.sql 95 > uninstall_postgis.sql
     17Couldn't parse AGGREGATE line: CREATE AGGREGATE ST_Extent(
     18        sfunc = ST_CombineBBox,
     19        finalfunc = box2d,
     20        stype = box3d
     21        );
     22}}}
     23
     24
     25even 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
     33I'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
     40triggering the uninstall script to actually write in a drop and recreate aggregate.