Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,23 +62,26 @@ public interface SnapshotDeltaLakeTable
* Sets the identifier of the newly created Iceberg table. This is required to be set before
* execute the action.
*
* @param identifier a table identifier (namespace, name) @Returns this for method chaining
* @param identifier a table identifier (namespace, name)
* @return this for method chaining
*/
SnapshotDeltaLakeTable as(TableIdentifier identifier);

/**
* Sets the catalog of the newly created Iceberg table. This is required to be set before execute
* the action
*
* @param catalog a catalog @Returns this for method chaining
* @param catalog a catalog
* @return this for method chaining
*/
SnapshotDeltaLakeTable icebergCatalog(Catalog catalog);

/**
* Sets the Hadoop configuration used to access delta lake table's logs and datafiles. This is
* required to be set before execute the action.
*
* @param conf a Hadoop configuration @Returns this for method chaining
* @param conf a Hadoop configuration
* @return this for method chaining
*/
SnapshotDeltaLakeTable deltaLakeConfiguration(Configuration conf);

Expand Down