SQL*Plus: SHOW and SET should allow multiple commands on same line #2210
Comments
Thanks for the report. As part of the fix for this issue we're adding support for
|
axelfontaine
added a commit
to flyway/flywaydb.org
that referenced
this issue
Nov 23, 2018
axelfontaine
added a commit
that referenced
this issue
Nov 23, 2018
This has now been implemented and will be released in the next few days as part of 5.2.2. |
Closed
dohrayme
pushed a commit
to dohrayme/flyway
that referenced
this issue
Feb 3, 2020
…nds on same line
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Which version and edition of Flyway are you using?
flyway-5.2.1 Enterprise
Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin)
command-line
Which database are you using (type & version)?
Oracle 12.1
Which operating system are you using?
Windows 10
What did you do?
sqlplus script with the initial line:
set define off verify off feedback off
command:
flyway -enterprise migrate
What did you expect to see?
That
set define off
would be processed and the&var
placeholders ignoredWhat did you see instead?
The multiple
set
options on the same line meansset define off
is not processed. As a result the&placeholders
are attempted to be evaluated and script fails.The script is an auto generated export of an Oracle Apex application, so editing the file is not encouraged.
In addition, the
set verify
andset feedback
commands are ignored.The text was updated successfully, but these errors were encountered: