PyRSA commented on PR #8734: URL: https://github.com/apache/paimon/pull/8734#issuecomment-5019053149
> * When `fields.<field>.ts-field` is not configured, the Java semantics use the last field in the ROW. > * In Python, when calling `input_row.get(None)` on a PyArrow/dict ROW, the timestamp returned is always empty, causing the new value to be ignored. Thanks! Fixed. The Python implementation now matches the Java behavior: if `fields.<field>.ts-field` is not configured, it resolves the last field of the `ROW` as the timestamp field during initialization instead of looking up `None` at runtime. I've also added a test to cover this default timestamp field behavior. -- 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]
