Skip to content

Commit

Permalink
SQL parser - some code cleaning and new test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
luigidellaquila committed Jul 27, 2015
1 parent 5ff2d9c commit 9175f58
Show file tree
Hide file tree
Showing 6 changed files with 1,086 additions and 1,246 deletions.
15 changes: 0 additions & 15 deletions core/src/main/grammar/OrientSQL.jjt
Expand Up @@ -2849,21 +2849,6 @@ OTraverseProjectionItem TraverseProjectionItem():
{ return jjtThis; }
}

OArray Array():
{
jjtThis.expressions = new java.util.ArrayList();
OExpression currentExpr;
}
{
(
<LBRACKET> [ currentExpr = Expression() { jjtThis.expressions.add(currentExpr); }
( <COMMA> currentExpr = Expression() { jjtThis.expressions.add(currentExpr); } )* ] <RBRACKET>
)
{ return jjtThis; }

}


OJson Json():
{
OJsonItem lastItem;
Expand Down

This file was deleted.

0 comments on commit 9175f58

Please sign in to comment.