From: | Kevin Grittner <kgrittn(at)gmail(dot)com> |
---|---|
To: | alejandro(at)cartodb(dot)com |
Cc: | "pgsql-bugs(at)postgresql(dot)org" <pgsql-bugs(at)postgresql(dot)org> |
Subject: | Re: BUG #14152: pg_dump does not take into account previous versions reserved keywords as column names |
Date: | 2016-05-20 17:56:44 |
Message-ID: | CACjxUsOnn1xpEMMC+8xQ9_k_Mt5pZznPnuoR3c6cnZOuwnHZKA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Fri, May 20, 2016 at 12:58 PM, <alejandro(at)cartodb(dot)com> wrote:
> - On that database run: CREATE TABLE test(foo int, "over" test, bar int);.
> Note that "over" is a keyword which apparently went from reserved to
> non-reserved on 9.4 release.
> - Use a 9.5.3 pg_dump to dump the database.
>
> It fails with:
>
> pg_dump: [archiver (db)] query failed: ERROR: syntax error at or near
> "over"
> LINE 1: COPY public.test (foo, over, bar) TO stdout;
> ^
> pg_dump: [archiver (db)] query was: COPY public.test (foo, over, bar) TO
> stdout;
>
> Using a 9.3 pg_dump will quote the "over" column name and properly finish
> the dump.
... or use the --quote-all-identifiers option of 9.5 pg_dump.
http://www.postgresql.org/docs/9.5/static/app-pgdump.html
Not a bug.
--
Kevin Grittner
EDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | John R Pierce | 2016-05-20 18:02:47 | Re: BUG #14152: pg_dump does not take into account previous versions reserved keywords as column names |
Previous Message | alejandro | 2016-05-20 16:58:24 | BUG #14152: pg_dump does not take into account previous versions reserved keywords as column names |