JingsongLi commented on PR #611: URL: https://github.com/apache/paimon-rust/pull/611#issuecomment-5083304149
`TableWrite` allows data-evolution batches to carry `_ROW_ID`, but the regular write pipeline does not consume this column, and the commit still reassigns the row ID. A regression test writes `_ROW_ID=99`, but the read result is `0`, which constitutes a silent loss of semantics. It is recommended that standard `TableWrite` operations reject `_ROW_ID`; DataFusion entry points should first strip out internal columns as in #602, and row-id updates/deletions should continue to use `new_update` / `new_delete`. -- 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]
