Support [FIRST | AFTER column_name] support in ALTER TABLE for MySQL #1180
Merged
alamb merged 2 commits intoapache:mainfrom Apr 7, 2024
Merged
Conversation
xring
commented
Mar 15, 2024
| let column_def = self.parse_column_def()?; | ||
|
|
||
| let mut column_position = None; | ||
| if dialect_of!(self is MySqlDialect) { |
Contributor
Author
There was a problem hiding this comment.
As per Contributing Guide, this is a dialect specific feature, shold also include GenericDialect here.
36505d4 to
f52e326
Compare
f52e326 to
c823970
Compare
Contributor
Author
|
@andygrove Hi, could you please help approve the waiting workflow? |
Pull Request Test Coverage Report for Build 8308807027Details
💛 - Coveralls |
Contributor
Author
|
Had some fix and running workflow locally with result: codestyle lint compile test @andygrove sorry but could you please help approve the workflow again? |
[FIRST | AFTER column_name] support in ALTER TABLE for MySQL
Contributor
|
Sorry for the delay in reviewing |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As per MySQL doc, the
ALTER TABLE Statementhas the definition:issue reported in #1172 , this PR add
[FIRST | AFTER column_name]support in MySQL alter table