Add missing semicolon, per buildfarm results. Martin Pihlak
authorTom Lane
Sat, 20 Dec 2008 16:02:55 +0000 (16:02 +0000)
committerTom Lane
Sat, 20 Dec 2008 16:02:55 +0000 (16:02 +0000)
src/backend/parser/gram.y

index cc81e6564610d3a194a796f5cb3c57f8f04d1875..29eab503198ea226aa77d3e4bdad553b700950a7 100644 (file)
@@ -11,7 +11,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.646 2008/12/19 16:25:17 petere Exp $
+ *   $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.647 2008/12/20 16:02:55 tgl Exp $
  *
  * HISTORY
  *   AUTHOR            DATE            MAJOR EVENT
@@ -3001,7 +3001,7 @@ CreateUserMappingStmt: CREATE USER MAPPING FOR auth_ident SERVER name create_gen
 auth_ident:
            CURRENT_USER    { $$ = "current_user"; }
        |   USER            { $$ = "current_user"; }
-       |   RoleId          { $$ = (strcmp($1, "public") == 0) ? NULL : $1 }
+       |   RoleId          { $$ = (strcmp($1, "public") == 0) ? NULL : $1; }
        ;
 
 /*****************************************************************************