jetstreamapp / soql-parser-js

Javascript SOQL parser
https://jetstreamapp.github.io/soql-parser-js/
MIT License
79 stars 20 forks source link

parseQuery fails when bind variable contains parenthesis #153 #154

Closed paustint closed 3 years ago

paustint commented 3 years ago

153 - A new parser option has been added named ignoreParseErrors,

which will remove invalid parts of a query if there are parsing errors.

The general structure of the query must be valid and the SELECT and WHERE clauses must both be valid, but any other clause may be removed from the parsed output if there are errors parsing the query and ignoreParseErrors is set to true.

This option has been added to the documentation application.

resolves #153