Skip to content

Commit

Permalink
predicate fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhzhan authored and liancheng committed May 16, 2015
1 parent 4e61c16 commit 7cc2c64
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ private[sql] object OrcFilters extends Logging {
Some(b1)
}
case p@IsNull(attribute: String) => {
val b1 = builder.isNull(attribute)
Some(b1)
}
case p@IsNotNull(attribute: String) => {
val b1 = builder.startNot().isNull(attribute).end()
Some(b1)
}
Expand Down

0 comments on commit 7cc2c64

Please sign in to comment.