提交 c4bde425 编写于 作者: B Bruce Momjian

The SQL preprocessor ecpg generates "initially deferrable" from

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

Unknown.
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册