-
Notifications
You must be signed in to change notification settings - Fork 161
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
Liquibase Client improvements #2889
Merged
Coduz
merged 7 commits into
eclipse-kapua:develop
from
Coduz:feature-liquibaseImprovements
Mar 13, 2020
Merged
Liquibase Client improvements #2889
Coduz
merged 7 commits into
eclipse-kapua:develop
from
Coduz:feature-liquibaseImprovements
Mar 13, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Coduz
added
Bug
This is a bug or an unexpected behaviour. Fix it!
Enhancement
This PR/Issue improves an part of Kapua
labels
Mar 12, 2020
Codecov Report
@@ Coverage Diff @@
## develop #2889 +/- ##
=============================================
- Coverage 55.40% 55.34% -0.07%
+ Complexity 2378 2374 -4
=============================================
Files 1021 1024 +3
Lines 21871 21948 +77
Branches 1977 1994 +17
=============================================
+ Hits 12118 12147 +29
- Misses 8851 8886 +35
- Partials 902 915 +13 |
Signed-off-by: coduz <alberto.codutti@eurotech.com>
Signed-off-by: coduz <alberto.codutti@eurotech.com>
Signed-off-by: coduz <alberto.codutti@eurotech.com>
Signed-off-by: coduz <alberto.codutti@eurotech.com>
…equired Signed-off-by: coduz <alberto.codutti@eurotech.com>
Signed-off-by: coduz <alberto.codutti@eurotech.com>
Signed-off-by: coduz <alberto.codutti@eurotech.com>
Coduz
force-pushed
the
feature-liquibaseImprovements
branch
from
March 13, 2020 08:43
292a84c
to
5d4cf6a
Compare
lorthirk
approved these changes
Mar 13, 2020
This was referenced Mar 16, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Bug
This is a bug or an unexpected behaviour. Fix it!
Enhancement
This PR/Issue improves an part of Kapua
Liquibase
Liquibase-related stuff. Better to go easy on those!
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR improves the LiquibaseClient to allow fix to TIMESTAMP columns on MariaDB and MySQL.
See https://liquibase.jira.com/browse/CORE-1958
Related Issue
None
Description of the solution adopted
Added scripts to modify columns to add the subsecond part.
This script are run based on the version of Liquibase module. If after
3.3.3
the script will be executed. If executed prior to that version, the script will modify the columns without the subsecond part again. This fix can be also forced with an additional parameter.Screenshots
None
Any side note on the changes made
Silenced the Liquibase Client log.
Added a utility class
SemanticVersion
to simplify handling of the component versions.