summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-03-11 03:36:22 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2010-03-11 03:36:22 +0000
commit4df5c6c7195cf9382d249d6371d2c8e02d46a7ae (patch)
tree6654689787678d6dec0c04fa549d97da299a0d84 /src
parent70aedc0c55b633da814ec12a5705cf5b09f4d6ba (diff)
Update comment for pg_constraint.conindid to mention that it's used for
exclusion constraints. Not sure how we managed to update the comment for it in catalogs.sgml but miss this one.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_constraint.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/catalog/pg_constraint.h b/src/include/catalog/pg_constraint.h
index 5f62f17f16e..b028fdf85be 100644
--- a/src/include/catalog/pg_constraint.h
+++ b/src/include/catalog/pg_constraint.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/pg_constraint.h,v 1.38 2010/02/26 02:01:21 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/pg_constraint.h,v 1.39 2010/03/11 03:36:22 tgl Exp $
*
* NOTES
* the genbki.pl script reads this file and generates .bki
@@ -64,11 +64,11 @@ CATALOG(pg_constraint,2606)
/*
* conindid links to the index supporting the constraint, if any;
- * otherwise it's 0. This is used for unique and primary-key constraints,
- * and less obviously for foreign-key constraints (where the index is a
- * unique index on the referenced relation's referenced columns). Notice
- * that the index is on conrelid in the first case but confrelid in the
- * second.
+ * otherwise it's 0. This is used for unique, primary-key, and exclusion
+ * constraints, and less obviously for foreign-key constraints (where the
+ * index is a unique index on the referenced relation's referenced
+ * columns). Notice that the index is on conrelid in the first case but
+ * confrelid in the second.
*/
Oid conindid; /* index supporting this constraint */