We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e643f8 commit 92242c7Copy full SHA for 92242c7
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala
@@ -1025,6 +1025,7 @@ private[hive] object HiveQl {
1025
case Token(AND(), left :: right:: Nil) => And(nodeToExpr(left), nodeToExpr(right))
1026
case Token(OR(), left :: right:: Nil) => Or(nodeToExpr(left), nodeToExpr(right))
1027
case Token(NOT(), child :: Nil) => Not(nodeToExpr(child))
1028
+ case Token("!", child :: Nil) => Not(nodeToExpr(child))
1029
1030
/* Case statements */
1031
case Token("TOK_FUNCTION", Token(WHEN(), Nil) :: branches) =>
0 commit comments