mirror of
https://github.com/postgres/postgres.git
synced 2026-06-03 22:04:18 -04:00
Added missing clause to parser.
This commit is contained in:
parent
ba5e258ef9
commit
7e002a6f56
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue