Skip to content

Commit 6d79871

Browse files
committed
Add missing semicolon, per buildfarm results. Martin Pihlak
1 parent a1212d0 commit 6d79871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/gram.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.646 2008/12/19 16:25:17 petere Exp $
14+
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.647 2008/12/20 16:02:55 tgl Exp $
1515
*
1616
* HISTORY
1717
* AUTHOR DATE MAJOR EVENT
@@ -3001,7 +3001,7 @@ CreateUserMappingStmt: CREATE USER MAPPING FOR auth_ident SERVER name create_gen
30013001
auth_ident:
30023002
CURRENT_USER { $$ = "current_user"; }
30033003
| USER { $$ = "current_user"; }
3004-
| RoleId { $$ = (strcmp($1, "public") == 0) ? NULL : $1 }
3004+
| RoleId { $$ = (strcmp($1, "public") == 0) ? NULL : $1; }
30053005
;
30063006

30073007
/*****************************************************************************

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy