From a18faa1ba238644de56236ee6faa74027f1f469d Mon Sep 17 00:00:00 2001
From: Neil Conway <neilc@samurai.com>
Date: Thu, 13 Jul 2006 15:09:57 +0000
Subject: [PATCH] Remove trailing comma from CreateStmtLikeOption enum
 definition. This is harmless, but it causes a warning with Tru64's cc.

---
 src/include/nodes/parsenodes.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index fa63ca185bb..38994eef093 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -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;
 
 /* ----------
-- 
GitLab