1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-21 05:21:08 +03:00

Update a couple of example error messages to reflect the fact that we

don't generate constraint names like "$1" anymore.
This commit is contained in:
Tom Lane
2004-08-07 19:53:48 +00:00
parent c71e3de264
commit 82433e913c
2 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.27 2004/08/03 20:32:30 tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.28 2004/08/07 19:53:48 tgl Exp $ -->
<chapter id="ddl">
<title>Data Definition</title>
@@ -1971,7 +1971,7 @@ REVOKE CREATE ON SCHEMA public FROM PUBLIC;
<screen>
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.
</screen>