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
Describe the bug
The builder methods in DataSinkBuilder and DataSourceBuilder have many methods annotated with @Nullable but they are checked to be non-null.
To Reproduce
newDataSourceBuilder(pathlingContext).parquet(null) // error, but annotated with nullable
Expected behavior
Many (if not all?) @Nullable annotations should be replaced with @Nonnull.