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 fed1c4e commit 7cdcf1cCopy full SHA for 7cdcf1c
sql/core/src/main/scala/org/apache/spark/sql/sources/filters.scala
@@ -37,8 +37,9 @@ abstract class Filter
37
case class EqualTo(attribute: String, value: Any) extends Filter
38
39
/**
40
- * A filter that evaluates to `true` iff the attribute evaluates to a value
41
- * null safe and equal to `value`.
+ * Performs equality comparison, similar to [[EqualTo]]. However, this differs from [[EqualTo]]
+ * in that it returns `true` (rather than NULL) if both inputs are NULL, and `false`
42
+ * (rather than NULL) if one of the input is NULL and the other is not NULL.
43
*
44
* @since 1.5.0
45
*/
0 commit comments