bruce-dunwiddie / tsql-parser

Library Written in C# For Parsing SQL Server T-SQL Scripts in .Net
Apache License 2.0
324 stars 56 forks source link

#117 Case Expression trailing whitespace #120

Closed teyc closed 1 year ago

teyc commented 1 year ago

Trailing whitespaces were not included in the case expression when IncludeWhiteSpace=true. #117 This leads to a failure when parsing this expression

ISNULL(CASE 1 WHEN 2 THEN 2 ELSE 3 END , 4)