alamb commented on code in PR #11278:
URL: https://github.com/apache/datafusion/pull/11278#discussion_r1667071792


##########
datafusion/substrait/tests/testdata/data.csv:
##########
@@ -1,3 +1,3 @@
 a,b,c,d,e,f
-1,2.0,2020-01-01,false,4294967296,'a'
-3,4.5,2020-01-01,true,2147483648,'b'
\ No newline at end of file
+1,2.0,2020-01-01,false,4294967295,'a'

Review Comment:
   I think you mean `Int32` 🤔 
   
   ```sql
   > select 4294967295::int;
   Arrow error: Cast error: Can't cast value 4294967295 to type Int32
   > select 4294967295::bigint;
   +-------------------+
   | Int64(4294967295) |
   +-------------------+
   | 4294967295        |
   +-------------------+
   1 row(s) fetched.
   Elapsed 0.002 seconds.
   ```



-- 
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]

Reply via email to