amogh-jahagirdar commented on code in PR #12736:
URL: https://github.com/apache/iceberg/pull/12736#discussion_r2048073422
##########
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/source/SparkWriteBuilder.java:
##########
@@ -117,7 +119,10 @@ public WriteBuilder overwrite(Filter[] filters) {
@Override
public Write build() {
// Validate
- Schema writeSchema = validateOrMergeWriteSchema(table, dsSchema,
writeConf);
+ Schema writeSchema =
+ validateOrMergeWriteSchema(
+ table, dsSchema, writeConf, TableUtil.formatVersion(table) >= 3 &&
overwriteFiles);
Review Comment:
Add a comment for this, but in the context of building a regular
`SparkWrite` (so appends, overwriteFIles, overwriteDynamicPartitions) the only
one case where we need to include row lineage explicitly in the output schema
is the `overwriteFiles` case for CoW.
In every other case, both fields will be explicitly null for all the fields
produced, and as per the spec that means we do not need to write them out. cc
@rdblue
##########
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/source/SparkWriteBuilder.java:
##########
@@ -117,7 +119,10 @@ public WriteBuilder overwrite(Filter[] filters) {
@Override
public Write build() {
// Validate
- Schema writeSchema = validateOrMergeWriteSchema(table, dsSchema,
writeConf);
+ Schema writeSchema =
+ validateOrMergeWriteSchema(
+ table, dsSchema, writeConf, TableUtil.formatVersion(table) >= 3 &&
overwriteFiles);
Review Comment:
I'll Add a comment for this, but in the context of building a regular
`SparkWrite` (so appends, overwriteFIles, overwriteDynamicPartitions) the only
one case where we need to include row lineage explicitly in the output schema
is the `overwriteFiles` case for CoW.
In every other case, both fields will be explicitly null for all the fields
produced, and as per the spec that means we do not need to write them out. cc
@rdblue
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]