Re: [PATCHES] [HACKERS] UTF8 or Unicode

2005-02-26 Thread Bruce Momjian
[EMAIL PROTECTED] wrote: > In <[EMAIL PROTECTED]>, on 02/26/05 >at 07:55 PM, Bruce Momjian said: > > >[EMAIL PROTECTED] wrote: > >> Further to my earlier e-mail, there would have to be two lines added to > >> conversion_create.sql for each alternate function name > >> > >> Like: > >> > >>

Re: [PATCHES] [BUGS] BUG #1466: #maintenace_work_mem = 16384

2005-02-26 Thread Bruce Momjian
Patch applied. Thanks. I assume this is not for 8.0.X. --- Magnus Hagander wrote: > >>> The proposed test on Redirect_stderr looks pretty fishy too; for one > >>> thing it will almost certainly not be the right thing > >

Re: [PATCHES] [HACKERS] UTF8 or Unicode

2005-02-26 Thread lsunley
In <[EMAIL PROTECTED]>, on 02/26/05 at 07:55 PM, Bruce Momjian said: >[EMAIL PROTECTED] wrote: >> Further to my earlier e-mail, there would have to be two lines added to >> conversion_create.sql for each alternate function name >> >> Like: >> >> CREATE OR REPLACE FUNCTION ascii_to_whatever

Re: [PATCHES] [HACKERS] UTF8 or Unicode

2005-02-26 Thread Bruce Momjian
[EMAIL PROTECTED] wrote: > Further to my earlier e-mail, there would have to be two lines added to > conversion_create.sql for each alternate function name > > Like: > > CREATE OR REPLACE FUNCTION ascii_to_whatever (INTEGER, INTEGER, CSTRING, > CSTRING, INTEGER) RETURNS VOID AS '$libdir/ascmic',

Re: [PATCHES] [HACKERS] UTF8 or Unicode

2005-02-26 Thread lsunley
Further to my earlier e-mail, there would have to be two lines added to conversion_create.sql for each alternate function name Like: CREATE OR REPLACE FUNCTION ascii_to_whatever (INTEGER, INTEGER, CSTRING, CSTRING, INTEGER) RETURNS VOID AS '$libdir/ascmic', 'ascii_to_mic' LANGUAGE 'c' STRICT; CR