8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1212d0 commit 6d79871Copy full SHA for 6d79871
src/backend/parser/gram.y
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $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 $
15
16
* HISTORY
17
* AUTHOR DATE MAJOR EVENT
@@ -3001,7 +3001,7 @@ CreateUserMappingStmt: CREATE USER MAPPING FOR auth_ident SERVER name create_gen
3001
auth_ident:
3002
CURRENT_USER { $$ = "current_user"; }
3003
| USER { $$ = "current_user"; }
3004
- | RoleId { $$ = (strcmp($1, "public") == 0) ? NULL : $1 }
+ | RoleId { $$ = (strcmp($1, "public") == 0) ? NULL : $1; }
3005
;
3006
3007
/*****************************************************************************
0 commit comments