-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MySQL statement not recognized due to multiple comment directives on a single line #558
Milestone
Comments
Thanks for reporting this. This is partly due to the parser not being able to deal with multiple statements per line at this point. I plan on revisiting it at some point in the near future to address this. |
I will document a limitation and revisit this for 3.1 |
Limitation is in the docs: http://flywaydb.org/documentation/database/mysql.html |
Fixed. At last! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using Flyway version 2.2 I discovered an issue with merging an initial MySQL dump of an existing database schema.
Flyway does not recognize the following as a statement:
If I separate the comment directives by a newline such as in the following example then Flyway recognizes the statement:
The troublesome SQL snippet was added by the mysqldump tool.
The text was updated successfully, but these errors were encountered: