manticore-projects
manticore-projects
Greetings. Unfortunately I do not understand what you intend to do: Did we not replace a few `SimpleExpression` with `Expression` exactly for parsing complex expressions?
Greetings. We actually DO have such a FEATURE already: `AllowComplexExpressionParsing`, which is set to TRUE most times, but only set to FALSE when we detect too deep nesting. You can...
We could implement two methods `parse()` and `fastParse()` and set `AllowComplexExpressionParsing` to FALSE for the later one.
We use it at various places. Most prominently in Primary Expression and Case.Sent from my Galaxy -------- Original message --------From: Tobias ***@***.***> Date: 12/12/2021 15:34 (GMT+01:00) To: JSQLParser/JSqlParser ***@***.***> Cc:...
Closed, since no further question has been asked.
Closed, since no further questions asked.
True, it has not been implemented yet.
Greetings, `DELAYED` is a reserved keyword\token and needs to be quoted properly. I have sent a PR #1382 dealing with keywords in a more comprehensive way, but it is pending...
The challenge is like that: 1) you will need to define Tokens in order to trigger certain productions 2) then you will need to define exceptions, whenever those Tokens are...
Btw, the PR #1382 solves your challenge, I have just tested it. (Solves it by semi-automatic generation of Step 2 described above, allowing all tokens where possible.)