Hi
I have an exisiting SQL file that create a package and some functions.
I am executing this using <sqlFile> tag.
in the SQL, there is an instance where we call a function with xml content as string....
ex:
DOSOMETHING('<?xml version="1.0"?> <?mso-application progid="Excel.Sheet"?> ......
When I run updateSQL on this... it converts the above line to ...(changes in red)
DOSOMETHING('<:1xml version="1.0":2> <:3mso-application progid="Excel.Sheet":4>
Little research found that this is due escapeProcessing set to true....
in Liquibase code, escapeProcessing was set to false if the statement has "?"
Now I wonder why this is not working.... and a special mention that it is executed using <sqlFile> tag ?