From: Michael Meskes Date: Tue, 6 Nov 2007 08:33:32 +0000 (+0000) Subject: Added missing clause to parser. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=eda4daa4bd39668f654cc3d4ae20bd6310f45051;p=users%2Fbernd%2Fpostgres.git Added missing clause to parser. --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index b1767d4e16..cdbb5b6419 100644 --- 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