WITH instead of USING on COPY?
Alejandro Dubrovsky <[email protected]>
| Newsgroups | gmane.comp.python.db.psycopg.devel |
|---|---|
| Message-ID | <[email protected]> |
Should psycopg2 switch from COPY %s%s TO stdout USING DELIMITERS '%s' WITH NULL AS '%s', .... to something like: COPY %s%s TO stdout WITH DELIMITERS '%s' NULL AS '%s', ... ? The currently existing version is, from the Postgres documentation, the version used prior to 7.3. It is still supported for straight table copies, but does not handle the case when copying from a query.