Allow IMPORT FOREIGN SCHEMA within pl/pgsql.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Jul 2016 22:06:50 +0000 (18:06 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Jul 2016 22:07:03 +0000 (18:07 -0400)
commitbaebab3ace480477f210dadc4633d8d119dfa978
tree0819b1ccd01dc2c58a42638d08ec5bc10cbd0326
parentd3fbd5929ce5cb7468635aac30c2abf02b7d474a
Allow IMPORT FOREIGN SCHEMA within pl/pgsql.

Since IMPORT FOREIGN SCHEMA has an INTO clause, pl/pgsql needs to be
aware of that and avoid capturing the INTO as an INTO-variables clause.
This isn't hard, though it's annoying to have to make IMPORT a plpgsql
keyword just for this.  (Fortunately, we have the infrastructure now
to make it an unreserved keyword, so at least this shouldn't break any
existing pl/pgsql code.)

Per report from Merlin Moncure.  Back-patch to 9.5 where IMPORT FOREIGN
SCHEMA was introduced.

Report: <CAHyXU0wpHf2bbtKGL1gtUEFATCY86r=VKxfcACVcTMQ70mCyig@mail.gmail.com>
src/pl/plpgsql/src/pl_gram.y
src/pl/plpgsql/src/pl_scanner.c