Reputation: 6186
I am trying to
=
) in JEXL3 with equals functionality to make it support SQL like statements to support below statement:WHERE A=B
WHERE column_name IN (value1, value2, ...)
What classes I need to override to make it work. Any help will be appreciated?
Upvotes: 0
Views: 141
Reputation: 364
Modifying the JEXL syntax and interpreter to turn into a SQL one seems overly complicated; you would have to start with the grammar in parser.jjt but I'd advise against such an endeavour.
Upvotes: 1