projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
| inline |
side by side
(parent:
e41e0fc
)
The SQL preprocessor ecpg generates "initially deferrable" from
author
Bruce Momjian
<
[email protected]
>
Wed, 11 Jul 2001 17:31:30 +0000
(17:31 +0000)
committer
Bruce Momjian
<
[email protected]
>
Wed, 11 Jul 2001 17:31:30 +0000
(17:31 +0000)
INITIALLY DEFERRED in source code. cf. preproc.y:1455.
Unknown.
src/interfaces/ecpg/preproc/preproc.y
|
blob
|
blame
|
history
diff --git
a/src/interfaces/ecpg/preproc/preproc.y
b/src/interfaces/ecpg/preproc/preproc.y
index 6b93e767e3e7da96319bec01fb34544b1db7e5df..41455566be07acf6418789a3a3dc198fd90a31e4 100644
(file)
--- a/
src/interfaces/ecpg/preproc/preproc.y
+++ b/
src/interfaces/ecpg/preproc/preproc.y
@@
-1460,7
+1460,7
@@
ConstraintDeferrabilitySpec: NOT DEFERRABLE { $$ = make_str("not deferrable"); }
;
ConstraintTimeSpec: INITIALLY IMMEDIATE { $$ = make_str("initially immediate"); }
- | INITIALLY DEFERRED { $$ = make_str("initially deferr
able
"); }
+ | INITIALLY DEFERRED { $$ = make_str("initially deferr
ed
"); }
;
DropTrigStmt: DROP TRIGGER name ON relation_name