Whether Flyway should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn’t yet support.
false
./flyway -oracle.sqlplusWarn="true" info
flyway.oracle.sqlplusWarn=true
FLYWAY_ORACLE_SQLPLUS_WARN=true
Flyway.configure()
.oracleSqlplusWarn(true)
.load()
flyway {
oracleSqlplusWarn = true
}
<configuration>
<oracleSqlplusWarn>true</oracleSqlplusWarn>
</configuration>