-
Notifications
You must be signed in to change notification settings - Fork 23
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
Support MySQL 5.X as a target #988
Comments
My understanding here is that we need to just add a new set of queries that don't use CTEs for MySQL and then drill in the version of the database throughout the codebase so that we can know when to use the MySQL 5.7 queries |
Adding support in Run |
Possibly an opportunity for #996 |
Yep, I see what you mean by adding support in |
Regarding #996, I can take a look at that once I get this base functionality working. Then can refactor this so it applies to all templates for every dialect. |
These older versions of MySQL don't support CTE's, which, at a minimum, prevents the schema-inspection queries from running. There may be other unknown-unknown's in terms of SQL workload changes.
The text was updated successfully, but these errors were encountered: