projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbac976
)
Fixed bug in GRANT OPTION FOR parsing.
author
Michael Meskes
<
[email protected]
>
Sun, 4 Jan 2004 14:50:13 +0000
(14:50 +0000)
committer
Michael Meskes
<
[email protected]
>
Sun, 4 Jan 2004 14:50:13 +0000
(14:50 +0000)
src/interfaces/ecpg/preproc/preproc.y
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/ecpg/preproc/preproc.y
b/src/interfaces/ecpg/preproc/preproc.y
index 7df97610201479bec81e912651de0a2e78478a61..f779d23c03410145d6b440c63eddd06a69bd9725 100644
(file)
--- a/
src/interfaces/ecpg/preproc/preproc.y
+++ b/
src/interfaces/ecpg/preproc/preproc.y
@@
-2018,7
+2018,7
@@
opt_grant_grant_option: WITH GRANT OPTION
opt_revoke_grant_option: GRANT OPTION FOR
{
mmerror(PARSE_ERROR, ET_WARNING, "Currently unsupported REVOKE/GRANT OPTION FOR will be passed to backend");
- $$ = make_str("
with grant option
");
+ $$ = make_str("
grant option for
");
}
| /*EMPTY*/ { $$ = EMPTY; }
;