dump + restore didn't include schemas - Mailing list pgsql-hackers

From Dan Langille
Subject dump + restore didn't include schemas
Date
Msg-id 401AC85F.29157.17799FCB@localhost
Whole thread Raw
Responses Re: dump + restore didn't include schemas  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Hi folks,

I upgraded two servers today from 7.3.* to 7.4.1.  In both cases, the 
schemas which existed in the original databases were not created in 
the new database.

The CREATE SCHEMA commands are there...

\connect "freebsddiary.org"
--
-- PostgreSQL database dump
--

SET SESSION AUTHORIZATION 'www';

--
-- TOC entry 2 (OID 3642999)
-- Name: www; Type: SCHEMA; Schema: -; Owner: www
--

CREATE SCHEMA www;

But not in the resulting database:

freebsddiary.org=# set search_path = www, phorum, public, pg_catalog;
ERROR:  schema "www" does not exist
freebsddiary.org=# set search_path = phorum, public, pg_catalog;
ERROR:  schema "phorum" does not exist
freebsddiary.org=#

New issue?  Known bug?
-- 
Dan Langille : http://www.langille.org/
BSDCan - http://www.bsdcan.org/



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Question about indexes
Next
From: Tatsuo Ishii
Date:
Subject: Re: [PATCHES] v7.4.1 text_position() patch