Re: open item: tablespace handing in pg_dump/pg_restore - Mailing list pgsql-hackers

From Reini Urban
Subject Re: open item: tablespace handing in pg_dump/pg_restore
Date
Msg-id 41614549.4060703@x-ray.at
Whole thread Raw
In response to Re: open item: tablespace handing in pg_dump/pg_restore  (Gavin Sherry <swm@linuxworld.com.au>)
Responses Re: open item: tablespace handing in pg_dump/pg_restore
List pgsql-hackers
Gavin Sherry schrieb:
> On Mon, 4 Oct 2004, Reini Urban wrote: >>But the regression test fails: (the only failing test against cvs HEAD)
>>This is not only a pg_dump/pg_restore issue, or?
>>
>>-- Will fail with bad path
>>CREATE TABLESPACE badspace LOCATION '/no/such/location';
>>ERROR:  could not set permissions on directory "/no/such/location": No
>>such file or directory
>>-- No such tablespace
>>CREATE TABLE bar (i int) TABLESPACE nosuchspace;
>>ERROR:  tablespace "nosuchspace" does not exist
>>-- Fail, not empty
>>DROP TABLESPACE testspace;
>>ERROR:  tablespace "testspace" is not empty
>>DROP SCHEMA testschema CASCADE;
>>NOTICE:  drop cascades to table testschema.foo
>>-- Should succeed
>>DROP TABLESPACE testspace;
>>
>>=>
>>
>>***************
>>*** 38,45 ****
>>   ERROR:  tablespace "nosuchspace" does not exist
>>   -- Fail, not empty
>>   DROP TABLESPACE testspace;
>>! ERROR:  tablespace "testspace" is not empty
>>   DROP SCHEMA testschema CASCADE;
>>! NOTICE:  drop cascades to table testschema.foo
>>   -- Should succeed
>>   DROP TABLESPACE testspace;
>>--- 41,49 ----
>>   ERROR:  tablespace "nosuchspace" does not exist
>>   -- Fail, not empty
>>   DROP TABLESPACE testspace;
>>! ERROR:  tablespace "testspace" does not exist
>>   DROP SCHEMA testschema CASCADE;
>>! ERROR:  schema "testschema" does not exist
>>   -- Should succeed
>>   DROP TABLESPACE testspace;
>>+ ERROR:  tablespace "testspace" does not exist
> 
> 
> I cannot recreate on Linux. What platform, etc, are you on?

hmm, I'll investigate then.

postgresql latest CVS with 2 minor shlib building patches left  (added -lpgport)
cygwin-1.5.11
gcc-3.4.1

-- 
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/


pgsql-hackers by date:

Previous
From: Gavin Sherry
Date:
Subject: Re: open item: tablespace handing in pg_dump/pg_restore
Next
From: Gavin Sherry
Date:
Subject: Re: open item: tablespace handing in pg_dump/pg_restore