maddyblue/sqlfmt

Additional double quotation marks added to the T-SQL statement

ToMakeSense opened this issue · 1 comments

see example below:

SELECT len(ISNUll(tableName.clumn,'')) AS CloumnLength FROM tableName;

The formatted SQL was:

SELECT len("isnull"(tablename.clumn, '')) AS cloumnlength FROM tablename;

Additional double quotation marks were added around isnull, it was incorrect.

Sadly T-SQL is not supported. See #53.