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