Remove trailing comma from CreateStmtLikeOption enum definition. This

is harmless, but it causes a warning with Tru64's cc.
This commit is contained in:
Neil Conway 2006-07-13 15:09:57 +00:00
parent 6809c064d7
commit a18faa1ba2
1 changed files with 2 additions and 2 deletions

View File

@ -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.315 2006/07/03 22:45:40 tgl Exp $
* $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.316 2006/07/13 15:09:57 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -1028,7 +1028,7 @@ typedef enum CreateStmtLikeOption {
CREATE_TABLE_LIKE_INCLUDING_CONSTRAINTS,
CREATE_TABLE_LIKE_EXCLUDING_CONSTRAINTS,
CREATE_TABLE_LIKE_INCLUDING_INDEXES,
CREATE_TABLE_LIKE_EXCLUDING_INDEXES,
CREATE_TABLE_LIKE_EXCLUDING_INDEXES
} CreateStmtLikeOption;
/* ----------