We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Batch parsing should be able to handle the following cases:
single, single-line block comment:
/* comment */ GO
single, multiple-line block comment:
/* comment line 1 line 2 line 3 */ GO
multiple block comments (no space between them!):
/* comment line 1 line 2 *//* start of #2 */ GO 4
batch terminator embedded in a multi-line comment should be ignored:
/* comment line 1 GO more comments */
batch terminator embedded in a multi-line string literal should be ignored:
' some text GO more text'
The text was updated successfully, but these errors were encountered:
SqlQuantumLeap
No branches or pull requests
Batch parsing should be able to handle the following cases:
single, single-line block comment:
single, multiple-line block comment:
multiple block comments (no space between them!):
batch terminator embedded in a multi-line comment should be ignored:
batch terminator embedded in a multi-line string literal should be ignored:
The text was updated successfully, but these errors were encountered: