package utils
Type Members
-
class
SourceSchema extends AnyRef
Schema information about column names and their types that should be read from Delta table.
-
final
class
SourceUtils extends AnyRef
A utility class for Source connector
-
class
TransitiveOptional[T] extends AnyRef
A container object which may or may not contain a non-null value.
A container object which may or may not contain a non-null value. It supports chaining through
An example of using
TransitiveOptionalclass for method chaining where every method returnsTransitiveOptionalinstance. In this chain, the next step will be executed ONLY if the previous one returned an emptyTransitiveOptionalreturn getSnapshotFromCheckpoint(checkpointSnapshotVersion) .or(this::getSnapshotFromStartingVersionOption) .or(this::getSnapshotFromStartingTimestampOption) .or(this::getHeadSnapshot) .get();