francis0407 commented on a change in pull request #23783: [SPARK-26854][SQL] 
Support ANY/SOME subquery
URL: https://github.com/apache/spark/pull/23783#discussion_r257534186
 
 

 ##########
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/predicates.scala
 ##########
 @@ -798,3 +901,11 @@ case class GreaterThanOrEqual(left: Expression, right: 
Expression)
 
   protected override def nullSafeEval(input1: Any, input2: Any): Any = 
ordering.gteq(input1, input2)
 }
+
+/**
+ * Only be used in PredicateSubquery, and will be rewrite as Not(EqualTo(left, 
right)).
+ */
+case class NotEqualTo(left: Expression, right: Expression) extends 
BinaryComparison {
 
 Review comment:
   OK, I'll try to parse `x != ANY(query)` to `Not(AnySubquery(x, EqualTo, 
query))`, so that we won't need it any more.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to