Re: quoting psql varible as identifier

Robert Haas <robertmhaas@gmail.com>

From: Robert Haas <robertmhaas@gmail.com>
To: Pavel Stehule <pavel.stehule@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@postgresql.org>, Tom Lane <tgl@sss.pgh.pa.us>
Date: 2009-12-29T18:49:13Z
Lists: pgsql-hackers
On Dec 29, 2009, at 8:57 AM, Pavel Stehule <pavel.stehule@gmail.com>  
wrote:

> Hello
>
> I am working on new patch. I see a problem with copy quote_ident on
> client side. This function call ScanKeywordLookup function.
>
>                const ScanKeyword *keyword = ScanKeywordLookup(ident,
>
>                                    ScanKeywords,
>
>                                    NumScanKeywords);
>
> so we cannot simply implement quote_ident on client side :(. So we
> have to use a real query.
>
> It is acceptable for you?

No. It has to be client-side.

...Robert