pengzhiwei2018 commented on a change in pull request #2334:
URL: https://github.com/apache/hudi/pull/2334#discussion_r551698632
##########
File path:
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/io/HoodieWriteHandle.java
##########
@@ -53,47 +52,70 @@
private static final Logger LOG =
LogManager.getLogger(HoodieWriteHandle.class);
- protected final Schema writerSchema;
- protected final Schema writerSchemaWithMetafields;
+ /**
+ * The table schema is the schema of the table which used to read/write
record from table.
+ */
+ protected final Schema tableSchema;
+ /**
+ * The table schema with meta fields.
+ */
+ protected final Schema tableSchemaWithMetaFields;
+ /**
+ * The input schema is the input data schema which used to parse data from
incoming record.
+ */
+ protected final Schema inputSchema;
+ /**
+ * The input shema with meta fields.
Review comment:
Thanks for your correct.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]