arnavarora2004 commented on code in PR #35696:
URL: https://github.com/apache/beam/pull/35696#discussion_r2255280066
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableReadSchemaTransformProvider.java:
##########
@@ -69,6 +71,13 @@ public class BigtableReadSchemaTransformProvider
Schema.FieldType.STRING,
Schema.FieldType.array(Schema.FieldType.row(CELL_SCHEMA))))
.build();
+ public static final Schema FLATTENED_ROW_SCHEMA =
+ Schema.builder()
+ .addByteArrayField("key")
+ .addStringField("family_name")
Review Comment:
The flattened row schema names are consistent with BigTable Write schema
names, the regular not flatten row schema is named column families as that is
native to what bigTable has name wise
--
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]