-
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.
Make
ALTER TABLE foo ALTER COLUMN a SET DATA TYPE text
options unre…
…presentable (#508) Ensure that SQL statements of the form: ```sql ALTER TABLE foo ALTER COLUMN a SET DATA TYPE text COLLATE "en_US" ALTER TABLE foo ALTER COLUMN a SET DATA TYPE text USING 'foo' ``` are converted to raw SQL operations instead of an `OpAlterColumn` operation. The change of collation is not currently representable by an `OpAlterColumn` operation and neither is the `USING` clause. Part of #504
- Loading branch information
1 parent
06bfebd
commit 5b7980d
Showing
2 changed files
with
22 additions
and
0 deletions.
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