Skip to content
Snippets Groups Projects
Commit c2520f50 authored by hyukjinkwon's avatar hyukjinkwon Committed by Reynold Xin
Browse files

[SPARK-9935] [SQL] EqualNotNull not processed in ORC

https://issues.apache.org/jira/browse/SPARK-9935

Author: hyukjinkwon <gurwls223@gmail.com>

Closes #8163 from HyukjinKwon/master.
parent a8d2f4c5
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,11 @@ private[orc] object OrcFilters extends Logging {
.filter(isSearchableLiteral)
.map(builder.equals(attribute, _))
case EqualNullSafe(attribute, value) =>
Option(value)
.filter(isSearchableLiteral)
.map(builder.nullSafeEquals(attribute, _))
case LessThan(attribute, value) =>
Option(value)
.filter(isSearchableLiteral)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment