DROP TRANSFORM parsetree representation is no good

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: DROP TRANSFORM parsetree representation is no good
Date: 2015-05-18 01:31:09
Message-ID: 10485.1431912669@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Running the regression tests with -DCOPY_PARSE_PLAN_TREES reveals that
DROP TRANSFORM parse trees fail to be copiable:

regression=# DROP TRANSFORM IF EXISTS FOR fake_type LANGUAGE plperl;
ERROR: unrecognized node type: 1701866608

I've not tracked down the exact reason, but it kinda looks like the
"argument" field has been filled with a list of bare C strings, not
a list of String nodes which is what it'd have to be to work here.

regards, tom lane

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2015-05-18 02:03:15 dromedary is now using -DCOPY_PARSE_PLAN_TREES
Previous Message Peter Geoghegan 2015-05-18 01:08:05 Re: Bug in jsonb minus operator