You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A big thanks for this tool.
I noticed a section of my SQL statement was marked in error when running. I noticed that the join clause of EXCEPTION is not being noticed and the formatter inserts INNER instead (at least using the version via VS Code). My DB is IBM I DB2.
Before:
select * from table_a A exception join table_b B on A.fld1 = B.fld1
After:
SELECT *
FROM table_a A exception
INNER JOIN table_b B ON A.fld1 = B.fld1
Using the web version, the conversion is correct but EXCEPTION is still not tokenized properly.
A fix for this is not urgent for me.
The text was updated successfully, but these errors were encountered:
A big thanks for this tool.
I noticed a section of my SQL statement was marked in error when running. I noticed that the join clause of EXCEPTION is not being noticed and the formatter inserts INNER instead (at least using the version via VS Code). My DB is IBM I DB2.
Before:
select * from table_a A exception join table_b B on A.fld1 = B.fld1
After:
SELECT *
FROM table_a A exception
INNER JOIN table_b B ON A.fld1 = B.fld1
Using the web version, the conversion is correct but EXCEPTION is still not tokenized properly.
A fix for this is not urgent for me.
The text was updated successfully, but these errors were encountered: