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
The SQL statement SELECT [\nName] FROM [Table] fails to enumerate through the tokens in the SqlTokenizer class. A SyntaxException is thrown in RegexTokenizer.ReadNextToken().
Here is the test I had created in TestTokenizer.cs in Lann.Sql.Parser.Test:
[Test][TestCase("SELECT [\nName] FROM [Table]",new[]{"SELECT","[\nName]","FROM","[Table]"})]publicvoidCan_Tokenize_Columns_Containing_Whitespace(stringinput,string[]tokens){Verify(input,tokens);}
The text was updated successfully, but these errors were encountered:
The SQL statement
SELECT [\nName] FROM [Table]
fails to enumerate through the tokens in the SqlTokenizer class. A SyntaxException is thrown in RegexTokenizer.ReadNextToken().Here is the test I had created in TestTokenizer.cs in Lann.Sql.Parser.Test:
The text was updated successfully, but these errors were encountered: