mirror of https://github.com/apache/openjpa.git
OPENJPA-764: Parse IN expressions with string functions such as UPPER()
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@712842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5550d8dbb5
commit
75b9ca7fa3
|
@ -705,7 +705,7 @@ void between_expression() #BETWEEN : { }
|
||||||
|
|
||||||
void in_expression() #IN : { }
|
void in_expression() #IN : { }
|
||||||
{
|
{
|
||||||
path() [ LOOKAHEAD(1) <NOT> { jjtThis.not = true; }] <IN>
|
(path() | scalar_function()) [ LOOKAHEAD(1) <NOT> { jjtThis.not = true; }] <IN>
|
||||||
"(" (literal_or_param()
|
"(" (literal_or_param()
|
||||||
(<COMMA> (literal_or_param()))* | subquery())
|
(<COMMA> (literal_or_param()))* | subquery())
|
||||||
")"
|
")"
|
||||||
|
|
Loading…
Reference in New Issue