Skip to content

Commit

Permalink
spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Ashcraft committed Nov 5, 2024
1 parent 664eb51 commit 8f549e8
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,9 @@ public ReadRows withOutputParallelization(boolean outputParallelization) {
}

/**
* Whether to disable auto commit on read. Defaults to true if not provided.
* The need for this config varies depending on the database platform.
* Informix requires this to be set to false while Postgres requires this to be set to true.
* Whether to disable auto commit on read. Defaults to true if not provided. The need for this
* config varies depending on the database platform. Informix requires this to be set to false
* while Postgres requires this to be set to true.
*/
public ReadRows withDisableAutoCommit(boolean disableAutoCommit) {
return toBuilder().setDisableAutoCommit(disableAutoCommit).build();
Expand Down Expand Up @@ -985,9 +985,9 @@ public Read<T> withOutputParallelization(boolean outputParallelization) {
}

/**
* Whether to disable auto commit on read. Defaults to true if not provided.
* The need for this config varies depending on the database platform.
* Informix requires this to be set to false while Postgres requires this to be set to true.
* Whether to disable auto commit on read. Defaults to true if not provided. The need for this
* config varies depending on the database platform. Informix requires this to be set to false
* while Postgres requires this to be set to true.
*/
public Read<T> withDisableAutoCommit(boolean disableAutoCommit) {
return toBuilder().setDisableAutoCommit(disableAutoCommit).build();
Expand Down Expand Up @@ -1168,9 +1168,9 @@ public ReadAll<ParameterT, OutputT> withOutputParallelization(boolean outputPara
}

/**
* Whether to disable auto commit on read. Defaults to true if not provided.
* The need for this config varies depending on the database platform.
* Informix requires this to be set to false while Postgres requires this to be set to true.
* Whether to disable auto commit on read. Defaults to true if not provided. The need for this
* config varies depending on the database platform. Informix requires this to be set to false
* while Postgres requires this to be set to true.
*/
public ReadAll<ParameterT, OutputT> withDisableAutoCommit(boolean disableAutoCommit) {
return toBuilder().setDisableAutoCommit(disableAutoCommit).build();
Expand Down Expand Up @@ -1393,9 +1393,9 @@ public ReadWithPartitions<T, PartitionColumnT> withFetchSize(int fetchSize) {
}

/**
* Whether to disable auto commit on read. Defaults to true if not provided.
* The need for this config varies depending on the database platform.
* Informix requires this to be set to false while Postgres requires this to be set to true.
* Whether to disable auto commit on read. Defaults to true if not provided. The need for this
* config varies depending on the database platform. Informix requires this to be set to false
* while Postgres requires this to be set to true.
*/
public ReadWithPartitions<T, PartitionColumnT> withDisableAutoCommit(
boolean disableAutoCommit) {
Expand Down

0 comments on commit 8f549e8

Please sign in to comment.