mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
The SQL preprocessor ecpg generates "initially deferrable" from
INITIALLY DEFERRED in source code. cf. preproc.y:1455. Unknown.
This commit is contained in:
parent
e41e0fc589
commit
c4bde42522
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user