Re: [BUGS] 8.0 doesn't dump index tablespace correctly.

2005-01-22 Thread Tom Lane
TANIDA Yutaka <[EMAIL PROTECTED]> writes: > pg_dump on 8.0 can't dump index's tablespace information if both table > and its index 's tablespaces are different. Good catch. Patch applied, thanks! regards, tom lane ---(end of broadcast)

[BUGS] 8.0 doesn't dump index tablespace correctly.

2005-01-19 Thread TANIDA Yutaka
Hi, pg_dump on 8.0 can't dump index's tablespace information if both table and its index 's tablespaces are different. For example: create table a(i int) tablespace ts1; create index a_idx on a (i) tablespace ts2; create index a_idx2 on a (i) tablespace pg_default; Assuming tablespace ts1 ans ts