Commit 679bd34e authored by Stephane Nicoll's avatar Stephane Nicoll

Upgrade to Flyway 7.0.2

Closes gh-23645
parent de2302ac
...@@ -311,6 +311,12 @@ public class FlywayProperties { ...@@ -311,6 +311,12 @@ public class FlywayProperties {
*/ */
private String oracleKerberosConfigFile; private String oracleKerberosConfigFile;
/**
* Whether Flyway should output a table with the results of queries when executing
* migrations. Requires Flyway Teams.
*/
private boolean outputQueryResults = true;
/** /**
* Whether Flyway should skip executing the contents of the migrations and only update * Whether Flyway should skip executing the contents of the migrations and only update
* the schema history table. Requires Flyway teams. * the schema history table. Requires Flyway teams.
...@@ -737,6 +743,14 @@ public class FlywayProperties { ...@@ -737,6 +743,14 @@ public class FlywayProperties {
this.oracleKerberosConfigFile = oracleKerberosConfigFile; this.oracleKerberosConfigFile = oracleKerberosConfigFile;
} }
public boolean isOutputQueryResults() {
return this.outputQueryResults;
}
public void setOutputQueryResults(boolean outputQueryResults) {
this.outputQueryResults = outputQueryResults;
}
public Boolean getSkipExecutingMigrations() { public Boolean getSkipExecutingMigrations() {
return this.skipExecutingMigrations; return this.skipExecutingMigrations;
} }
......
...@@ -304,7 +304,7 @@ bom { ...@@ -304,7 +304,7 @@ bom {
] ]
} }
} }
library("Flyway", "7.0.0") { library("Flyway", "7.0.2") {
group("org.flywaydb") { group("org.flywaydb") {
modules = [ modules = [
"flyway-core" "flyway-core"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment