Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c4bde42

Browse files
committed
The SQL preprocessor ecpg generates "initially deferrable" from
INITIALLY DEFERRED in source code. cf. preproc.y:1455. Unknown.
1 parent e41e0fc commit c4bde42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ ConstraintDeferrabilitySpec: NOT DEFERRABLE { $$ = make_str("not deferrable"); }
14601460
;
14611461

14621462
ConstraintTimeSpec: INITIALLY IMMEDIATE { $$ = make_str("initially immediate"); }
1463-
| INITIALLY DEFERRED { $$ = make_str("initially deferrable"); }
1463+
| INITIALLY DEFERRED { $$ = make_str("initially deferred"); }
14641464
;
14651465

14661466
DropTrigStmt: DROP TRIGGER name ON relation_name

0 commit comments

Comments
 (0)