Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a18faa1

Browse files
author
Neil Conway
committed
Remove trailing comma from CreateStmtLikeOption enum definition. This
is harmless, but it causes a warning with Tru64's cc.
1 parent 6809c06 commit a18faa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/nodes/parsenodes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.315 2006/07/03 22:45:40 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.316 2006/07/13 15:09:57 neilc Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -1028,7 +1028,7 @@ typedef enum CreateStmtLikeOption {
10281028
CREATE_TABLE_LIKE_INCLUDING_CONSTRAINTS,
10291029
CREATE_TABLE_LIKE_EXCLUDING_CONSTRAINTS,
10301030
CREATE_TABLE_LIKE_INCLUDING_INDEXES,
1031-
CREATE_TABLE_LIKE_EXCLUDING_INDEXES,
1031+
CREATE_TABLE_LIKE_EXCLUDING_INDEXES
10321032
} CreateStmtLikeOption;
10331033

10341034
/* ----------

0 commit comments

Comments
 (0)