Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting a SyntaxException while parsing a SQL statment #30

Open
TcavemanT opened this issue Aug 10, 2017 · 0 comments
Open

Getting a SyntaxException while parsing a SQL statment #30

TcavemanT opened this issue Aug 10, 2017 · 0 comments

Comments

@TcavemanT
Copy link

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]" } )]
public void Can_Tokenize_Columns_Containing_Whitespace( string input, string[] tokens )
{
	Verify( input, tokens );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant