Abacn commented on PR #34354: URL: https://github.com/apache/beam/pull/34354#issuecomment-2754793208
It turns out that the test already had an integar overflow in Row passed in: print out the pcollection pass going to pass to SqlTransform: https://github.com/apache/beam/blob/867d70c1689bc4b16141043616f912ce0b10b74c/sdks/python/apache_beam/io/avroio_test.py#L193 ``` Row(name='Henry', favorite_number=3, favorite_color='green') Row(name='Toby', favorite_number=7, favorite_color='brown') Row(name='Gordon', favorite_number=4, favorite_color='blue') Row(name='Emily', favorite_number=4294967295, favorite_color='Red') Row(name='Percy', favorite_number=6, favorite_color='Green') Row(name='Bruce', favorite_number=None, favorite_color=None) ``` this happens to both before and after this change (#34354) -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org