aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-04-27 00:33:46 +0000
committerBruce Momjian <bruce@momjian.us>2006-04-27 00:33:46 +0000
commit02eb8f4f5c93de08bfd916738e4e3c117d9fd968 (patch)
treedf284cbeb4ffb5669d8efbbb811c5153fab61c37 /src/include/nodes/parsenodes.h
parent944a17bf9f7f8394b693b12a5861576964cad97b (diff)
downloadpostgresql-02eb8f4f5c93de08bfd916738e4e3c117d9fd968.tar.gz
postgresql-02eb8f4f5c93de08bfd916738e4e3c117d9fd968.zip
Use schema search path to find the first matching contraint name for SET
CONSTRAINT, rather than affecting all constraints in all schemas (which is what we used to do). Also allow schema specifications. Kris Jurka
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index e4eb385df87..2da0f6605dd 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.307 2006/04/15 17:45:41 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.308 2006/04/27 00:33:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1782,7 +1782,7 @@ typedef struct LockStmt
typedef struct ConstraintsSetStmt
{
NodeTag type;
- List *constraints; /* List of names as Value strings */
+ List *constraints; /* List of names as RangeVars */
bool deferred;
} ConstraintsSetStmt;