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)
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