diff --git a/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java b/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java index 20fa90a5cfa5..946c07f55763 100644 --- a/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java +++ b/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java @@ -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(); @@ -985,9 +985,9 @@ public Read 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 withDisableAutoCommit(boolean disableAutoCommit) { return toBuilder().setDisableAutoCommit(disableAutoCommit).build(); @@ -1168,9 +1168,9 @@ public ReadAll 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 withDisableAutoCommit(boolean disableAutoCommit) { return toBuilder().setDisableAutoCommit(disableAutoCommit).build(); @@ -1393,9 +1393,9 @@ public ReadWithPartitions 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 withDisableAutoCommit( boolean disableAutoCommit) {