Skip to content

Commit

Permalink
spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Ashcraft committed Nov 1, 2024
1 parent 8da4d34 commit f960dba
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1380,6 +1380,12 @@ public ReadWithPartitions<T, PartitionColumnT> withFetchSize(int fetchSize) {
return toBuilder().setFetchSize(fetchSize).build();
}

/** Whether to disable auto commit on read. Defaults to true if not provided. */
public ReadWithPartitions<T, PartitionColumnT> withDisableAutoCommit(
boolean disableAutoCommit) {
return toBuilder().setDisableAutoCommit(disableAutoCommit).build();
}

/** Data output type is {@link Row}, and schema is auto-inferred from the database. */
public ReadWithPartitions<T, PartitionColumnT> withRowOutput() {
return toBuilder().setUseBeamSchema(true).build();
Expand Down

0 comments on commit f960dba

Please sign in to comment.