Re: BUG #8154: pg_dump throws error beacause of field called "new".

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: willybas(at)gmail(dot)com
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #8154: pg_dump throws error beacause of field called "new".
Date: 2013-05-13 14:24:55
Message-ID: 3145.1368455095@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

willybas(at)gmail(dot)com writes:
> pg_dump (PostgreSQL) 9.1.9 ends in an error when backing up my db, which
> contains a field called "new".

Works for me:

regression=# create table new (f1 text, new text);
CREATE TABLE
regression=# insert into new (f1, new) values ('1','2');
INSERT 0 1
regression=# copy new(f1,new) to stdout;
1 2

You sure the server is 9.1?

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Heikki Linnakangas 2013-05-13 14:56:14 Re: Inconsistency between TO_CHAR() and TO_NUMBER()
Previous Message Tom Lane 2013-05-13 14:09:18 Re: Inconsistency between TO_CHAR() and TO_NUMBER()