-
Notifications
You must be signed in to change notification settings - Fork 77
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
Migration Down Fails in 3.3.2 if you don't have have a return char on sql statement. #117
Comments
Thanks @h3adache , I thought I added a test for this, but apparently not. - if (lineBuffer.length() > 0 && !undo && !inUndo) {
+ if (lineBuffer.length() > 0 && (!undo || inUndo)) { This seems like a bad regression. Should we release 3.3.3 immediately? |
Nice, quick find! Yea, we should do a quick release for this one. Thanks! |
Hi @harawata this bug is still there but on the down stage. It doesn't replace ${changelog} if it's not followed by a return character :P |
@h3adache , XD |
@harawata thanks! I tried the 3.3.4-SNAPSHOT and it looks great! |
Thank you, @h3adache ! |
lol ok I'll keep testing 3.3.4-snapshot but we should release soon so people can take advantage of the new options and your performance enhancements without snapshot |
Hi @h3adache , I'll release 3.3.4 this weekend. |
up + down successfully completes but down is an empty statement.
up + down successfully correctly. The only difference is adding a return after the DROP statement.
Probably relates to #101 but need to investigate more.
The text was updated successfully, but these errors were encountered: