Which version and edition of Flyway are you using?
6.3.0 Pro
If this is not the latest version, can you reproduce the issue with the latest one as well?
(Many bugs are fixed in newer releases and upgrading will often resolve the issue)
In v6.2.4 flyway was removing the ";" from my package spec. I upgraded to 6.3.0 and now it raises an error on the line that has the final ";"
Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin)
Command-line
Which database are you using (type & version)?
Oracle 18
Which operating system are you using?
MacOS
What did you do?
(Please include the content causing the issue, any relevant configuration settings, the SQL statement that failed (if relevant) and the command you ran.)
In v6.2.4 I was having an issue where Flyway was removing the last ";" from my package spec causing them to be invalid. I upgraded to 6.3.0 hoping the issue could go away but now Flyway raises an exception on the exact line that has the last ";"
Example of the code:
create or replace package package_a authid current_user as
gc_a constant varchar2(1024) := 'bla';
g_b number;
procedure x (
some_param number
);
end package_a;
The text was updated successfully, but these errors were encountered:
Which version and edition of Flyway are you using?
6.3.0 Pro
If this is not the latest version, can you reproduce the issue with the latest one as well?
(Many bugs are fixed in newer releases and upgrading will often resolve the issue)
In v6.2.4 flyway was removing the ";" from my package spec. I upgraded to 6.3.0 and now it raises an error on the line that has the final ";"
Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin)
Command-line
Which database are you using (type & version)?
Oracle 18
Which operating system are you using?
MacOS
What did you do?
(Please include the content causing the issue, any relevant configuration settings, the SQL statement that failed (if relevant) and the command you ran.)
In v6.2.4 I was having an issue where Flyway was removing the last ";" from my package spec causing them to be invalid. I upgraded to 6.3.0 hoping the issue could go away but now Flyway raises an exception on the exact line that has the last ";"
Example of the code:
The text was updated successfully, but these errors were encountered: