alamb commented on issue #3376: URL: https://github.com/apache/arrow-datafusion/issues/3376#issuecomment-1890432111
I think this is done and unsigned ints work pretty well now: ``` DataFusion CLI v34.0.0 ❯ create table foo (x int unsigned); 0 rows in set. Query took 0.002 seconds. ❯ insert into foo values (1); +-------+ | count | +-------+ | 1 | +-------+ 1 row in set. Query took 0.002 seconds. ❯ select arrow_typeof(x) from foo; +---------------------+ | arrow_typeof(foo.x) | +---------------------+ | UInt32 | +---------------------+ 1 row in set. Query took 0.002 seconds. ❯ select x + 4 from foo; +------------------+ | foo.x + Int64(4) | +------------------+ | 5 | +------------------+ 1 row in set. Query took 0.004 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]
