From a0c12d5e905fdea19cf529af4f2d76e74412abc8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 23 Jun 2001 00:07:34 +0000 Subject: Add TEMPORARY sequences and have SERIAL on a temp table have a temporary sequence. --- src/include/nodes/parsenodes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/nodes/parsenodes.h') 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; -- cgit v1.2.3