The SQL preprocessor ecpg generates "initially deferrable" from

INITIALLY DEFERRED in source code. cf. preproc.y:1455.

Unknown.
This commit is contained in:
Bruce Momjian 2001-07-11 17:31:30 +00:00
parent e41e0fc589
commit c4bde42522

View File

@ -1460,7 +1460,7 @@ ConstraintDeferrabilitySpec: NOT DEFERRABLE { $$ = make_str("not deferrable"); }
; ;
ConstraintTimeSpec: INITIALLY IMMEDIATE { $$ = make_str("initially immediate"); } 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 DropTrigStmt: DROP TRIGGER name ON relation_name