-
Notifications
You must be signed in to change notification settings - Fork 590
Add support for MySQL 5/8 via MariaDB driver #5071
Conversation
* Use FlywayVendorReplacingEnvironmentPostProcessor to replace {vendor} in spring.flyways.locations * Add back in the MySQL schema * Use vendor (mysql) not driver in flyway configuration customizer See spring-attic#4887
0aa0cff
to
f08096b
Compare
@@ -0,0 +1,321 @@ | |||
/* | |||
* Copyright 2019-2022 the original author or authors. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick but it would be 2022-2022.
I had to pick on something ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep - fair enough. All of these files were actually here since 2019 and recently deleted like 6 months ago. I just resurrected these from git so was unsure if we should leave the start dates like they were? Thoughts?
* @author Glenn Renfro | ||
* @author Chris Bono | ||
* | ||
* @since 2.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SInCE 2.9. Nitpick ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto as the above outdated copyright range.
@@ -0,0 +1,269 @@ | |||
create table if not exists hibernate_sequence ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is how it is setup. Just seems odd that the skipper migration is in dataflow and not in skipper.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeh it is a bit odd but it expects that SCDF "goes first" and if it does then it must provide the schemas.
See #4887