From: Tom Lane Date: Sat, 7 Aug 2004 19:53:48 +0000 (+0000) Subject: Update a couple of example error messages to reflect the fact that we X-Git-Tag: REL8_0_0BETA1~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82433e913cef145c7d2f32a2770adf6d31daf2b1;p=thirdparty%2Fpostgresql.git Update a couple of example error messages to reflect the fact that we don't generate constraint names like "$1" anymore. --- diff --git a/doc/src/sgml/advanced.sgml b/doc/src/sgml/advanced.sgml index 475ba910a1e..f6b17018702 100644 --- a/doc/src/sgml/advanced.sgml +++ b/doc/src/sgml/advanced.sgml @@ -1,5 +1,5 @@ @@ -123,7 +123,7 @@ INSERT INTO weather VALUES ('Berkeley', 45, 53, 0.0, '1994-11-28'); -ERROR: insert or update on table "weather" violates foreign key constraint "$1" +ERROR: insert or update on table "weather" violates foreign key constraint "weather_city_fkey" DETAIL: Key (city)=(Berkeley) is not present in table "cities". @@ -290,6 +290,7 @@ COMMIT; Remembering the bank database, suppose we debit $100.00 from Alice's account, and credit Bob's account, only to find later that we should have credited Wally's account. We could do it using savepoints like + this: BEGIN; diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 404181482bf..71bb34d83ce 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -1,4 +1,4 @@ - + Data Definition @@ -1971,7 +1971,7 @@ REVOKE CREATE ON SCHEMA public FROM PUBLIC; DROP TABLE products; -NOTICE: constraint $1 on table orders depends on table products +NOTICE: constraint orders_product_no_fkey on table orders depends on table products ERROR: cannot drop table products because other objects depend on it HINT: Use DROP ... CASCADE to drop the dependent objects too.