ahmedabu98 opened a new issue, #23541: URL: https://github.com/apache/beam/issues/23541
### What happened? beam_PostCommit_Java_DataflowVX and beam_PostCommit_Java_Dataflow_Examples_Dataflow_V2_X are failing due to the following exception: ``` java.lang.RuntimeException: org.apache.beam.sdk.util.UserCodeException: org.apache.beam.vendor.guava.v26_0_jre.com.google.common.base.VerifyException: Expected Decimal logical type ``` Initial investigation: testTableIO is failing at the [read table step](https://github.com/apache/beam/blob/fc6f400f9abbbe213b5573592cf7a938b5bf16d5/examples/java/src/test/java/org/apache/beam/examples/snippets/transforms/io/gcp/bigquery/BigQuerySamplesIT.java#L120-L121) after writing to that table with schema created by BigQuerySchemaCreate.java. This error message is most likely coming from an empty value being read in from the numeric field column [here](https://github.com/apache/beam/blob/fc6f400f9abbbe213b5573592cf7a938b5bf16d5/examples/java/src/main/java/org/apache/beam/examples/snippets/transforms/io/gcp/bigquery/BigQuerySchemaCreate.java#L45). The [error is triggered](https://github.com/apache/beam/blob/fc6f400f9abbbe213b5573592cf7a938b5bf16d5/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryAvroUtils.java#L344) when this field is empty. From a first glance, I haven't encountered any recent changes in relevant files that would cause this failure. ### Issue Priority Priority: 1 ### Issue Component Component: io-java-gcp -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
