fallintoplace commented on code in PR #3405: URL: https://github.com/apache/iceberg-python/pull/3405#discussion_r3294823191
########## pyiceberg/expressions/literals.py: ########## @@ -68,6 +68,10 @@ UUID_BYTES_LENGTH = 16 +def _truncate_numeric_string_to_int(value: str) -> int: + return int(Decimal(value)) Review Comment: Thanks, pushed a follow-up in 29f7d36b. -- 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]
