Hi,
I have identified that the prepared XML tree for Oracle SQL is not entirely correct for operators NOT IN/NOT LIKE/NOT BETWEEN
NOT IN - see the example below, in_expr tag contains the attribute not but the xsd doesn't specify it
Stmt - select * from table1 where name not in (1,2,3)
XML tree part
****
namename123
NOT LIKE/NOT BETWEEN
Despite the fact that xsd defines that both these operators should contain attribute NOT, it is not populated for any of them (see example below)
Stmt - select * from table1 where name not between 1 and 2
XML tree part
Hi, I have identified that the prepared XML tree for Oracle SQL is not entirely correct for operators NOT IN/NOT LIKE/NOT BETWEEN
Stmt - select * from table1 where name not in (1,2,3) XML tree part
Stmt - select * from table1 where name not between 1 and 2 XML tree part
Thanks