mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
Added missing clause to parser.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.21 2005/10/14 01:50:58 momjian Exp $ */
|
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.22 2007/11/06 08:33:32 meskes Exp $ */
|
||||||
|
|
||||||
/* Copyright comment */
|
/* Copyright comment */
|
||||||
%{
|
%{
|
||||||
@@ -1661,6 +1661,10 @@ ConstraintAttributeSpec: ConstraintDeferrabilitySpec { $$ = $1; }
|
|||||||
|
|
||||||
$$ = cat2_str($1, $2);
|
$$ = cat2_str($1, $2);
|
||||||
}
|
}
|
||||||
|
| /* EMPTY */
|
||||||
|
{
|
||||||
|
$$ = EMPTY;
|
||||||
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
ConstraintDeferrabilitySpec: NOT DEFERRABLE
|
ConstraintDeferrabilitySpec: NOT DEFERRABLE
|
||||||
|
Reference in New Issue
Block a user