Skip to content

Commit

Permalink
Synchronize JdbcSchemaIO provider and Python transform configuration …
Browse files Browse the repository at this point in the history
…field order (#33288)

* Move order of write_batch_size

* Reorder Java schema instead

* Revert jdbc.py changes
  • Loading branch information
damondouglas authored Dec 5, 2024
1 parent 2344fdc commit e509e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/trigger_files/beam_PostCommit_Python.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"comment": "Modify this file in a trivial way to cause this test suite to run.",
"modification": 5
"modification": 6
}

Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ public Schema configurationSchema() {
.addNullableField("disableAutoCommit", FieldType.BOOLEAN)
.addNullableField("outputParallelization", FieldType.BOOLEAN)
.addNullableField("autosharding", FieldType.BOOLEAN)
.addNullableField("writeBatchSize", FieldType.INT64)
// Partitioning support. If you specify a partition column we will use that instead of
// readQuery
.addNullableField("partitionColumn", FieldType.STRING)
.addNullableField("partitions", FieldType.INT16)
.addNullableField("maxConnections", FieldType.INT16)
.addNullableField("driverJars", FieldType.STRING)
.addNullableField("writeBatchSize", FieldType.INT64)
.build();
}

Expand Down

0 comments on commit e509e70

Please sign in to comment.