-
Notifications
You must be signed in to change notification settings - Fork 39
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
Upgrade failing for MySQL with syntax error using v1.7.0 #513
Comments
Blargh! Sorry. This is probably the internal grate tables' migrations I have introduced that have errors. But, all my tests work fine. Which version of MySql are you running against? Do you see any errors in the script that is registered in the Grate_Internal.ScriptRunErrors (or Grate.ScriptRunErrors?) It's the script here (with the tokens replaced) that is run: |
Greetings Erik! I'm running against the latest MySQL container,
Did I miss something? In regards to your question, where would I find that? |
I just saw there was a new version of the template available which added the environment and schema inputs. I ran it again, but encountered the same error
I also tested
All of those work fine. |
I think it could be related, the database is created without the use of |
If it is not created using grate, I don't think it's related. It looks like it might be a difference in supported syntax in MariaDb vs MySQL: MariaDb seems to support I'll have to think a bit on how to solve this... we might rephrase the script that adds the status column to just add it, and ignore any errors if the column exists already. I'm sceptical to remove the script, as any existing RoundhousE installations will have the version table, but the status column won't be there, so, we'd have to add a manual migration step, then. |
…ISTS' in internal grate tables * Renamed MariaDb GrateStructure/up/01_version_add_status_column.sql to 01b_version_add_status_column.sql to avoid issues with changed one-time scripts (actually running it is idempotent)
…ISTS' in internal grate tables * Renamed MariaDb GrateStructure/up/01_version_add_status_column.sql to 01b_version_add_status_column.sql to avoid issues with changed one-time scripts (actually running it is idempotent)
Closing the loop, confirmed the new version is working fine :) |
Great, thanks for confirming, @twerthi ! |
Describe the bug
grate-internal/01_version_add_status_column.sql: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IF NOT EXISTS status varchar(50) NULL' at line 2
An error occurred: Migration failed due to the following errors:
Update ("up"):
I switched to version 1.6.2 and it works fine.
To Reproduce
Use the grate Step Template in Octopus Deploy with the Download Grate option selected and not specify a version.
Expected behavior
Screenshots
Desktop (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: