Re: \copy and identifier quoting

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: \copy and identifier quoting
Дата
Msg-id 200210140346.g9E3kAh03741@candle.pha.pa.us
обсуждение исходный текст
Ответ на \copy and identifier quoting  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Tom Lane wrote:
> Isn't this a bug?
> 
> regression=# create table FOO (f1 int);
> CREATE TABLE
> regression=# \copy FOO from stdin
> ERROR:  Relation "FOO" does not exist
> \copy: ERROR:  Relation "FOO" does not exist
> regression=#
> 
> This happens because \copy takes the given table name and slaps
> double quotes around it, so the backend gets COPY "FOO" ...
> rather than COPY FOO ...
> 
> It seems to me that psql's \copy should interpret the table name
> the same way that a regular SQL command would: honor double quotes,
> downcase in the absence of quotes.
> 
> Comments, objections?

Yes, that makes perfect sense.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: \copy needs work (was Re: Changing Column Order)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: experiences with autocommit functionality in 7.3