[HACKERS] Missing semicolon in parser's gram.y

2011-03-21 Thread Gurjeet Singh
Attached is a single-line patch to add a missing semicolon to gram.y; caught
using yyextract.

Regards,
-- 
Gurjeet Singh
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index d32e480..44c4fd6 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -9156,6 +9156,7 @@ SimpleTypename:
 $$ = $1;
 $$-collnames = $2;
 			}
+	;
 
 SimpleTypenameWithoutCollation:
 			GenericType{ $$ = $1; }

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Missing semicolon in parser's gram.y

2011-03-21 Thread Tom Lane
Gurjeet Singh singh.gurj...@gmail.com writes:
 Attached is a single-line patch to add a missing semicolon to gram.y; caught
 using yyextract.

Done some time ago ...
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=a051ef699c3ed1f89088dd6bbc2574f13d0b20eb#patch16

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers