From f0efe26402499f11e3f93459f0f87b666f1a0c56 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 2 Aug 2004 04:28:29 +0000 Subject: Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUE constraints. Christopher Kings-Lynne. --- src/include/nodes/parsenodes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/include/nodes') diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 9abfdb86054..a4be20647f2 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.263 2004/07/27 05:11:30 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.264 2004/08/02 04:28:29 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -992,6 +992,8 @@ typedef struct Constraint char *cooked_expr; /* expr, as nodeToString representation */ List *keys; /* String nodes naming referenced * column(s) */ + char *indexspace; /* index tablespace for PKEY/UNIQUE + * constraints; NULL for default */ } Constraint; /* ---------- -- cgit v1.2.3