diff options
author | Michael Meskes | 2007-11-06 08:33:18 +0000 |
---|---|---|
committer | Michael Meskes | 2007-11-06 08:33:18 +0000 |
commit | 7e002a6f5621d56260d8f9688afb85a797862241 (patch) | |
tree | dd3b6c501f1f240bee7207ea3e6e3d85f3474461 | |
parent | ba5e258ef97a450e3ea993bb7a08e18d25eb310b (diff) |
Added missing clause to parser.
-rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 167135d1fd2..5d6d0903194 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.303.4.7 2006/08/18 16:00:49 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.303.4.8 2007/11/06 08:33:18 meskes Exp $ */ /* Copyright comment */ %{ @@ -1813,6 +1813,10 @@ ConstraintAttributeSpec: ConstraintDeferrabilitySpec { $$ = $1; } $$ = cat2_str($1, $2); } + | /* EMPTY */ + { + $$ = EMPTY; + } ; ConstraintDeferrabilitySpec: NOT DEFERRABLE |