-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle
DEFERRABLE
and NOT DEFERRABLE
constraints in `CREATE TABLE…
…` statements (#556) Handle `DEFERRABLE` and `NOT DEFERRABLE` constraints in `CREATE TABLE` statements `NOT DEFERRABLE` constraints are the default, so add testcases to ensure that constraints with this modifier are converted to `OpCreateTable` operations. `DEFERRABLE` constraints and the `INITIALLY IMMEDIATE` and `INITIALLY DEFERRED` modifiers are not supported, so fall back to raw SQL operations when these options are present.
- Loading branch information
1 parent
627b64e
commit c64edc6
Showing
2 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters