Skip to content
Snippets Groups Projects
Commit c4bde425 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

The SQL preprocessor ecpg generates "initially deferrable" from

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

Unknown.
parent e41e0fc5
No related branches found
No related tags found
No related merge requests found
...@@ -1460,7 +1460,7 @@ ConstraintDeferrabilitySpec: NOT DEFERRABLE { $$ = make_str("not deferrable"); } ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment