From: Bruce Momjian Date: Wed, 11 Jul 2001 17:31:30 +0000 (+0000) Subject: The SQL preprocessor ecpg generates "initially deferrable" from X-Git-Tag: REL7_2_BETA1~881 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4bde42522749d6b0def4308d46077f960ee4f2c;p=postgresql The SQL preprocessor ecpg generates "initially deferrable" from INITIALLY DEFERRED in source code. cf. preproc.y:1455. Unknown. --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 6b93e767e3..41455566be 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1460,7 +1460,7 @@ ConstraintDeferrabilitySpec: NOT DEFERRABLE { $$ = make_str("not deferrable"); } ; ConstraintTimeSpec: INITIALLY IMMEDIATE { $$ = make_str("initially immediate"); } - | INITIALLY DEFERRED { $$ = make_str("initially deferrable"); } + | INITIALLY DEFERRED { $$ = make_str("initially deferred"); } ; DropTrigStmt: DROP TRIGGER name ON relation_name