pg_dump of table including check rule fails to restore - Mailing list pgsql-bugs

From Lewis Foti
Subject pg_dump of table including check rule fails to restore
Date
Msg-id MJEPJJCNLEBMDJFMDDABEEHNCDAA.lewis.foti@mentation.com
Whole thread Raw
Responses Re: pg_dump of table including check rule fails to restore  ("Lewis Foti" <lewis.foti@mentation.com>)
Re: pg_dump of table including check rule fails to restore  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-bugs
Hi

I have a schema which includes one table with a CHECK constraint. After the
schema is dumped (with pg_dump) as ascii text attempts to recreate it using
the psql -f <filename> command cause this one table, called navigaion, to
fail to create. This is using postgresql 7.3.3 on Redhat 9.0.  The fragment
of the dump is below. Is there a cure for this problem?

regards

Lewis

--
-- TOC entry 6 (OID 154551)
-- Name: navigation; Type: TABLE; Schema: public; Owner: wallet
--

CREATE TABLE navigation (
    src_section_id integer NOT NULL,
    dst_section_id integer NOT NULL,
    rank smallint NOT NULL,
    CHECK ((parent_section_id <> child_section_id))
) WITHOUT OIDS;

Lewis Foti

e: lewis.foti@mentation.com
m: +44 (0)7771 535943
w: www.mentation.com

pgsql-bugs by date:

Previous
From: tim
Date:
Subject: PG7.4 / psqlodbc / log_duration=true & client_min_messages=log / Can't connect
Next
From: "Lewis Foti"
Date:
Subject: Re: pg_dump of table including check rule fails to restore