Re: [BUGS] unexpected "ERROR: concurrent delete in progress"

2010-12-07 Thread Tom Lane
Jon Nelson writes: > While tracking down some issues that /might/ be kernel related, I ran > into an error message: > ERROR: concurrent delete in progress > With this SQL in a file (t.sql): > begin; > create temporary table foo as select x as a, ARRAY[x] as b FROM > generate_series(1, 1000

[BUGS] unexpected "ERROR: concurrent delete in progress"

2010-12-07 Thread Jon Nelson
While tracking down some issues that /might/ be kernel related, I ran into an error message: ERROR: concurrent delete in progress With this SQL in a file (t.sql): begin; create temporary table foo as select x as a, ARRAY[x] as b FROM generate_series(1, 1000 ) AS x; create index foo_a_idx on