Skip to content

Commit

Permalink
Update HiveQl.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
YanTangZhai committed Dec 2, 2014
1 parent 6e643f8 commit 92242c7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,7 @@ private[hive] object HiveQl {
case Token(AND(), left :: right:: Nil) => And(nodeToExpr(left), nodeToExpr(right))
case Token(OR(), left :: right:: Nil) => Or(nodeToExpr(left), nodeToExpr(right))
case Token(NOT(), child :: Nil) => Not(nodeToExpr(child))
case Token("!", child :: Nil) => Not(nodeToExpr(child))

/* Case statements */
case Token("TOK_FUNCTION", Token(WHEN(), Nil) :: branches) =>
Expand Down

0 comments on commit 92242c7

Please sign in to comment.