the following syntax is not recognize correctly by Toad 11.5. but was properly recognized in Toad 10.6:
select xmlelement(evalname('aaa'),xmltype('<xx>val</xx>'))
from dual;
It works (F5 and F9) with this syntax :
select xmlelement(evalname 'xxx','data')
from dual;
The isseu (only F5, but not F9 possible) appears with parentheses :
select xmlelement(evalname('xxx'),'data')
from dual;
Parser issue.
WORKAROUND:
None
STATUS:
Waiting for a fix to be released in a future version of Toad for Oracle.