Re: Loading a dump containing include commands - Mailing list pgsql-jdbc

From Craig Ringer
Subject Re: Loading a dump containing include commands
Date
Msg-id 4CA345C8.5010902@postnewspapers.com.au
Whole thread Raw
In response to Loading a dump containing include commands  ("Georg M. Sorst" <georgsorst@gmx.de>)
List pgsql-jdbc
On 29/09/2010 5:16 PM, Georg M. Sorst wrote:
> Hey list!
>
> Is there a way to load a dump with include statements (\i something.sql)
> with the Postgres JDBC driver? Both PGCopyOutputStream and the regular
> Statement seem to choke on \i.

No. \i is a psql-specific instruction. It's not part of the PostgreSQL
dialect or protocol, it's a utility command in the "psql" interactive
sql command processor.

You could probably pre-process the input stream to insert includes
pretty easily, though. Doing it properly and cleanly would require your
code to be properly aware of quoted blocks, including dollar-quoted
blocks, but in practice you can probably get away with looking for a
line-ending followed by a run of zero or more whitespace chars before \i .

--
Craig Ringer

Tech-related writing at http://soapyfrogs.blogspot.com/

pgsql-jdbc by date:

Previous
From: "John Lister"
Date:
Subject: selecting using array as IN condition parameter - possible?
Next
From: John Lister
Date:
Subject: Re: selecting using array as IN condition parameter - possible?