aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-06-23 00:07:34 +0000
committerBruce Momjian <bruce@momjian.us>2001-06-23 00:07:34 +0000
commita0c12d5e905fdea19cf529af4f2d76e74412abc8 (patch)
tree24aa5d7e7f470d024c7677a8d81d231962eb3002 /src/include/nodes/parsenodes.h
parent280b5f4be61af1c1ca740ee99fdc397156a97c71 (diff)
downloadpostgresql-a0c12d5e905fdea19cf529af4f2d76e74412abc8.tar.gz
postgresql-a0c12d5e905fdea19cf529af4f2d76e74412abc8.zip
Add TEMPORARY sequences and have SERIAL on a temp table have a temporary
sequence.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 43e64b6ad5f..42b72e8074a 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.132 2001/06/19 22:39:12 tgl Exp $
+ * $Id: parsenodes.h,v 1.133 2001/06/23 00:07:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -402,6 +402,7 @@ typedef struct CreateSeqStmt
{
NodeTag type;
char *seqname; /* the relation to create */
+ bool istemp; /* is this a temp sequence? */
List *options;
} CreateSeqStmt;