ggadon opened a new pull request, #13371: URL: https://github.com/apache/iceberg/pull/13371
When reading spark event logs that contain the `DeltaWrite` action in them, it is currently printed in the plan description like this: ``` (1) WriteDelta Input [1]: [_col#1] Arguments: org.apache.iceberg.spark.source.SparkPositionDeltaWrite@5234f6c5 ``` While when parsing `ReplaceData` (that is implemented in [`SparkWrite`](https://github.com/apache/iceberg/blob/8353ac8f80799495cfdc32dd37222ed1b8d8070f/spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/source/SparkWrite.java#L263-L266)), it looks like this: ``` (1) ReplaceData Input [1]: [col#1] Arguments: IcebergWrite(table=iceberg_table, format=PARQUET) ``` This change is about adding a toString method to SparkPositionDeltaWrite for more readable plans. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org