<@U7Y5BS2H0> the difference between Scala's Option...
# arrow
r
@rawtoast the difference between Scala's Option and
arrow.core.Option
is that in Arrow
Option(null) == Some(null)
and in Scala
Option(null) == None
. In Arrow if you want the same behavior as in Scala as you pointed out you have to use
Option.fromNullable(?)
.