If you: 1) Open a new document and type this: select '\'' from t3 2) then set the language to SQL
"from" will not be highlighted because of the second occurrence of '
I am still using version 4.6 and it is wrong even back then.
That SQL is invalid ... the "from t3" is part of the unterminated string literal. Correct SQL is:
select '\''' from t3
If you:
1) Open a new document and type this: select '\'' from t3
2) then set the language to SQL
"from" will not be highlighted because of the second occurrence of '
I am still using version 4.6 and it is wrong even back then.
That SQL is invalid ... the "from t3" is part of the unterminated string literal. Correct SQL is:
select '\''' from t3