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:
7b64b1d
)
Added missing clause to parser.
author
Michael Meskes
<
[email protected]
>
Tue, 6 Nov 2007 08:33:32 +0000
(08:33 +0000)
committer
Michael Meskes
<
[email protected]
>
Tue, 6 Nov 2007 08:33:32 +0000
(08:33 +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 b1767d4e16b8c7cedabfe1c297d4691ef162506a..cdbb5b64197db116b738a52d6254dfc4bd0b5725 100644
(file)
--- a/
src/interfaces/ecpg/preproc/preproc.y
+++ b/
src/interfaces/ecpg/preproc/preproc.y
@@
-1661,6
+1661,10
@@
ConstraintAttributeSpec: ConstraintDeferrabilitySpec { $$ = $1; }
$$ = cat2_str($1, $2);
}
+ | /* EMPTY */
+ {
+ $$ = EMPTY;
+ }
;
ConstraintDeferrabilitySpec: NOT DEFERRABLE