[PATCHES] remove TCL_ARRAYS

2008-02-29 Thread Alvaro Herrera
This patch removes the TCL_ARRAY symbol. This seems to be a leftover from when pgtcl was around in the backend; if enabled, it causes array_out to emit bogus array values: alvherre=# create table bar ( a text); CREATE TABLE alvherre=# insert into bar values ('foo'); INSERT 0 1 alvherre=# select

Re: [PATCHES] remove TCL_ARRAYS

2008-02-29 Thread Tom Lane
Alvaro Herrera [EMAIL PROTECTED] writes: This patch removes the TCL_ARRAY symbol. If you're going to remove it you should actually remove it (eg from pg_config_manual.h). This seems to be a leftover from when pgtcl was around in the backend; Yeah, it was supporting some kluge or other in the

Re: [PATCHES] remove TCL_ARRAYS

2008-02-29 Thread Alvaro Herrera
Tom Lane wrote: Alvaro Herrera [EMAIL PROTECTED] writes: This patch removes the TCL_ARRAY symbol. If you're going to remove it you should actually remove it (eg from pg_config_manual.h). Oops. Thanks, removed from there too. -- Alvaro Herrera