Commit c4bde425 authored by Bruce Momjian's avatar Bruce Momjian

The SQL preprocessor ecpg generates "initially deferrable" from

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

Unknown.
parent e41e0fc5
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment