I noticed that (using toad 16.2.98.1741) I can not execute the following (with F9):
--๐
SELECT 1 FROM DUAL;
I get the error ORA-00942: table or view does not exist, if I add a comment like this it works fine:
--๐
SELECT 1 FROM DUAL
--๐
;
There seems to be some kind of weird processing going on because in the first case the SQL that actually gets executed by toad (Spool SQL) is:
SELECT 1 FROM DUA;
This statement:
SELECT '๐' FROM DUAL;
causes the same issue but then the following SQL is also executed for some reason
select length(substrb('SELECT ''๐'' FROM DUA
', 1, 19)) CHAR_OFFSET from dual