I installed version 12.0.2.1818 today and just noticed a change in behavior of the code assistant. Now it is wrapping field names in double quotes when the object being queried is a view. But it is still just filling in the field name when the object being queried is a table.
This is the result with a table:
select * from ODBC_IMPORT t
where t.EMPLOYEE_NUMBER = 1;
This is the result for a view of the same table:
select * from ODBC_IMPORT_VW v
where v."EMPLOYEE_NUMBER" = 1;
I do not want to have the double quotes automatically added and I could not find a preference setting to turn this behavior off. Is there a new setting that I have not found to turn this off?
Thanks!
This is the result with a table:
select * from ODBC_IMPORT t
where t.EMPLOYEE_NUMBER = 1;
This is the result for a view of the same table:
select * from ODBC_IMPORT_VW v
where v."EMPLOYEE_NUMBER" = 1;
I do not want to have the double quotes automatically added and I could not find a preference setting to turn this behavior off. Is there a new setting that I have not found to turn this off?
Thanks!