From: | tgl(at)postgresql(dot)org (Tom Lane) |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql/ oc/src/sgml/catalogs.sgml oc/src/sgml/r ... |
Date: | 2002-07-12 18:43:20 |
Message-ID: | 20020712184320.279B447590B@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
CVSROOT: /cvsroot
Module name: pgsql
Changes by: tgl(at)postgresql(dot)org 02/07/12 14:43:20
Modified files:
doc/src/sgml : catalogs.sgml release.sgml
doc/src/sgml/ref: alter_table.sgml comment.sgml
drop_aggregate.sgml drop_domain.sgml
drop_function.sgml drop_index.sgml
drop_language.sgml drop_operator.sgml
drop_rule.sgml drop_sequence.sgml
drop_table.sgml drop_trigger.sgml
drop_type.sgml drop_view.sgml
src/backend/bootstrap: bootparse.y
src/backend/catalog: Makefile heap.c index.c indexing.c
namespace.c pg_type.c
src/backend/commands: aggregatecmds.c cluster.c comment.c
dbcommands.c functioncmds.c indexcmds.c
operatorcmds.c proclang.c tablecmds.c
trigger.c typecmds.c view.c
src/backend/nodes: copyfuncs.c equalfuncs.c outfuncs.c
src/backend/parser: analyze.c gram.y
src/backend/rewrite: rewriteDefine.c rewriteRemove.c
rewriteSupport.c
src/backend/tcop: utility.c
src/backend/utils/cache: lsyscache.c relcache.c
src/bin/initdb : initdb.sh
src/bin/pg_dump: pg_dump.c
src/bin/psql : describe.c
src/include/access: tupdesc.h
src/include/catalog: catname.h catversion.h heap.h index.h
indexing.h
src/include/commands: comment.h defrem.h proclang.h trigger.h
src/include/nodes: parsenodes.h
src/include/rewrite: rewriteRemove.h
src/include/utils: lsyscache.h
src/test/regress/expected: alter_table.out domain.out
foreign_key.out sanity_check.out
src/test/regress/output: constraints.source
src/test/regress/sql: alter_table.sql domain.sql foreign_key.sql
Added files:
src/backend/catalog: dependency.c pg_constraint.c pg_depend.c
src/include/catalog: dependency.h pg_constraint.h pg_depend.h
Removed files:
src/include/catalog: pg_relcheck.h
Log message:
Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.
pg_relcheck is gone; CHECK, UNIQUE, PRIMARY KEY, and FOREIGN KEY
constraints all have real live entries in pg_constraint. pg_depend
exists, and RESTRICT/CASCADE options work on most kinds of DROP;
however, pg_depend is not yet very well populated with dependencies.
(Most of the ones that are present at this point just replace formerly
hardwired associations, such as the implicit drop of a relation's pg_type
entry when the relation is dropped.) Need to add more logic to create
dependency entries, improve pg_dump to dump constraints in place of
indexes and triggers, and add some regression tests.
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian - CVS | 2002-07-13 00:55:53 | pgsql/doc/src/sgml/ref pg_restore.sgml |
Previous Message | Dave Cramer | 2002-07-12 13:07:48 | pgsql/src/interfaces/jdbc/org/postgresql/jdbc2 ... |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-07-12 19:17:21 | Memo on dropping practices |
Previous Message | Joe Conway | 2002-07-12 17:47:54 | Re: [GENERAL] workaround for lack of REPLACE() function |