Re: [COMMITTERS] pgsql: Add new SQL function, format(text).

2010-11-21 Thread Robert Haas
On Sun, Nov 21, 2010 at 5:22 PM, Andres Freund wrote: > On Sunday 21 November 2010 04:34:37 Robert Haas wrote: >> Add new SQL function, format(text). >> >> Currently, three conversion format specifiers are supported: %s for a >> string, %L for an SQL literal, and %I for an SQL identifier.  The lat

Re: [COMMITTERS] pgsql: Add new SQL function, format(text).

2010-11-21 Thread Andres Freund
On Sunday 21 November 2010 04:34:37 Robert Haas wrote: > Add new SQL function, format(text). > > Currently, three conversion format specifiers are supported: %s for a > string, %L for an SQL literal, and %I for an SQL identifier. The latter > two are deliberately designed not to overlap with what

[COMMITTERS] pgsql: Add new SQL function, format(text).

2010-11-20 Thread Robert Haas
Add new SQL function, format(text). Currently, three conversion format specifiers are supported: %s for a string, %L for an SQL literal, and %I for an SQL identifier. The latter two are deliberately designed not to overlap with what sprintf() already supports, in case we want to add more of sprin