Re: [BUGS] BUG #3648: Server crashes when trying to create a table

2007-10-03 Thread Anton A. Patrushev
Thanks Alvaro, I found the reason. The problem was after the table creation. Anton. > Anton A. Patrushev wrote: > > Hi Alvaro, > > > > In the function I'm trying to drop this table if it already exists: > > > > BEGIN > > > > DROP TABLE vert

Re: [BUGS] BUG #3648: Server crashes when trying to create a table

2007-10-03 Thread Anton A. Patrushev
Hi Alvaro, In the function I'm trying to drop this table if it already exists: BEGIN DROP TABLE vertices_tmp; EXCEPTION WHEN UNDEFINED_TABLE THEN END; CREATE TABLE vertices_tmp ( id serial ); ... Thanks, Anton. > Anton wro

Re: [BUGS] BUG #3648: Server crashes when trying to create a table

2007-10-03 Thread Anton A. Patrushev
Hi Alvaro, In the function I'm trying to drop this table if it already exists: BEGIN DROP TABLE vertices_tmp; EXCEPTION WHEN UNDEFINED_TABLE THEN END; CREATE TABLE vertices_tmp ( id serial ); ... Thanks, Anton. > Anton wro