You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by "yirutang (via GitHub)" <gi...@apache.org> on 2023/05/19 21:11:26 UTC

[GitHub] [beam] yirutang commented on a diff in pull request #26794: #26789 Fix auto schema update when schema order has changed.

yirutang commented on code in PR #26794:
URL: https://github.com/apache/beam/pull/26794#discussion_r1199404720


##########
sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOWriteTest.java:
##########
@@ -1985,9 +1985,13 @@ public void updateTableSchemaTest(boolean useSet) throws Exception {
         new TableSchema()
             .setFields(
                 ImmutableList.of(
-                    new TableFieldSchema().setName("name").setType("STRING"),
                     new TableFieldSchema().setName("number").setType("INTEGER"),
+                    new TableFieldSchema().setName("name").setType("STRING"),
                     new TableFieldSchema().setName("req").setType("STRING").setMode("REQUIRED")));
+

Review Comment:
   test nested case?



-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org