mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03: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…
x
Reference in New Issue
Block a user