You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While Dataset<Option<*>> works, whereever a schema needs to be created, such as Dataset<Pair<*, Option<*>>, then it fails. Option is a Product but is handled as if it doesn't exist in Scala. Meaning Option<T> is encoded as T.
This needs to be looked into
The text was updated successfully, but these errors were encountered:
While
Dataset<Option<*>>
works, whereever a schema needs to be created, such asDataset<Pair<*, Option<*>>
, then it fails.Option
is aProduct
but is handled as if it doesn't exist in Scala. MeaningOption<T>
is encoded asT
.This needs to be looked into
The text was updated successfully, but these errors were encountered: