Bug report CHECK CONSTRAINTS

From: "Pavel Veretennikov" <vermut(at)kid(dot)lv>
To: pgadmin-support(at)postgresql(dot)org
Subject: Bug report CHECK CONSTRAINTS
Date: 2004-07-12 09:18:46
Message-ID: opsa0phkhtuo8gh7@developer3
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support

Windows 2000
Russian language
Binary snapshot from Jun 23

When viewing table creation script, it produces following code (example):
stakecreditliminusd numeric(11,2) NOT NULL DEFAULT 0.00,
CONSTRAINT gs_players_pkey PRIMARY KEY (userid),
CONSTRAINT "$1" CHECK sex >= 0,
CONSTRAINT "$2" CHECK "type" >= 0
)
WITH OIDS;

When trying to copy-paste-run it, it complains about CHECK contstraints,
cause they should be written like
CONSTRAINT "$1" CHECK (sex >= 0),
CONSTRAINT "$2" CHECK ("type" >= 0)

according to documentation. PostgreSQL 7.4.3

--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Andreas Pflug 2004-07-12 13:16:12 Re: Bug report CHECK CONSTRAINTS
Previous Message Bruno Wolff III 2004-07-09 15:27:22 Re: [PHP] Secure DB Systems - How to