Which version and edition of Flyway are you using?
Flyway from github, branch master.
Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin)
Command-line
Which database are you using (type & version)?
Oracle EE 12.2.0.1
Which operating system are you using?
Linux and many other distrs.
What did you do?
deploy migration with below code:
create or replace package fw_dev_test.testas
function test(ss invarchar2) return varchar2;
end test;
/
create or replace package body fw_dev_test.testas
function test(ss invarchar2) return varchar2 is
begin
RETURN 'UPPER(NVL(RTRIM(REPLACE(REPLACE('|| ss || ss || Q'[, '', ''), '№', ''), ','), ]'|| ss ||'))';
end;
end test;
/
What did you expect to see?
migration is deployed
What did you see instead?
ERROR: Unable to parse statement in /home/i3/flyway/flyway/sql/V1_1__test.sql at line 6 col 1: Unknown char № encountered on line 9 at column 82
In sqlplus this plsql code is correctly compiled
The text was updated successfully, but these errors were encountered:
codicuz
changed the title
Unable to parse statement contans char "№"
Unable to parse statement contains char "№"
Dec 24, 2019
Which version and edition of Flyway are you using?
Flyway from github, branch master.
Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin)
Command-line
Which database are you using (type & version)?
Oracle EE 12.2.0.1
Which operating system are you using?
Linux and many other distrs.
What did you do?
deploy migration with below code:
What did you expect to see?
migration is deployed
What did you see instead?
In sqlplus this plsql code is correctly compiled
The text was updated successfully, but these errors were encountered: