Thanks to visit codestin.com
Credit goes to postgrespro.com

Re: Why format() adds double quote? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Why format() adds double quote?
Date
Msg-id [email protected]
Whole thread Raw
In response to Re: Why format() adds double quote?  ("Daniel Verite" <[email protected]>)
Responses Re: Why format() adds double quote?
List pgsql-hackers
"Daniel Verite" <[email protected]> writes:
> This boils down to the fact that the current quote_ident gives:

> =# select quote_ident('test․table');
>  quote_ident  
> --------------
>  "test․table"

> whereas the quote_ident patched as proposed gives:

> =# select quote_ident('test․table');
>  quote_ident 
> -------------
>  test․table

> So this is what I don't feel good about.

This patch was originally proposed as a simple, cost-free change,
but it's becoming obvious that it is no such thing.  I think
we should probably reject it and move on.
        regards, tom lane



pgsql-hackers by date:

Previous
From: "Igal @ Lucee.org"
Date:
Subject: Re: Implementing a new Scripting Language
Next
From: Petr Jelinek
Date:
Subject: Re: Sequence Access Method WIP