Re: [BUGS] postgresql 9.0.3: parallel restore fails with comments on indices

2011-02-18 Thread Tom Lane
Arnd Hannemann writes: > if pg_restore is used with -jN it fails if the dump has comments on indices. Reproduced here, thanks for the report! > The problem seems to be a false assumption in pg_backup_archiver.c: > ... > Comments are in SECTION_NONE so they get restored here regardless of > depe

[BUGS] postgresql 9.0.3: parallel restore fails with comments on indices

2011-02-18 Thread Arnd Hannemann
Hi, postgres version: 9.0.3 OS: debian squeeze 64bit if pg_restore is used with -jN it fails if the dump has comments on indices. Steps to reproduce (db testdb): CREATE DATABASE testdb; \c testdb CREATE TABLE tab (id INT); INSERT INTO tab VALUES (1); CREATE INDEX idx ON tab USING btree (id); CO