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:
Pinaki Poddar 2008-11-10 21:35:35 +00:00
parent 5550d8dbb5
commit 75b9ca7fa3
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ void between_expression() #BETWEEN : { }
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()
(<COMMA> (literal_or_param()))* | subquery())
")"