Skip to content

v.0.5.1

Choose a tag to compare

@vitaly-t vitaly-t released this 05 Aug 03:56
· 91 commits to master since this release

Adding explicit verification and a new error code for nested multi-line comments.

Previously, nested multi-line comments were swallowed silently, generating an implicit incorrect result.

Now the library checks for nested multi-line comments, and if found - throws a new error:

SQLParsingError {
    code: parsingErrorCode.nestedMLC
    error: "Nested multi-line comments are not supported."
    position: {line: 2, col: 3}
}