Ted-Jiang commented on issue #3708:
URL: https://github.com/apache/arrow-rs/issues/3708#issuecomment-1430822388

   And test with datafusion-cli
   ```❯ create external table test stored as parquet location 
"/Users/yangjiang/tpch-parquet/lineitem";
   
   
   
   
   0 rows in set. Query took 0.018 seconds.
   ❯ select l_partkey from test limit 21;
   +-----------+
   | l_partkey |
   +-----------+
   | 155190    |
   | 67310     |
   | 63700     |
   | 2132      |
   | 24027     |
   | 15635     |
   | 106170    |
   | 4297      |
   | 19036     |
   | 128449    |
   | 29380     |
   | 183095    |
   | 62143     |
   | 88035     |
   | 108570    |
   | 123927    |
   | 37531     |
   | 139636    |
   | 182052    |
   | 145243    |
   | 94780     |
   +-----------+
   21 rows in set. Query took 0.039 seconds.
   ❯ select l_partkey+1 from test limit 21;
   +---------------------------+
   | test.l_partkey + Int64(1) |
   +---------------------------+
   | 155191                    |
   | 67311                     |
   | 63701                     |
   | 2133                      |
   | 24028                     |
   | 15636                     |
   | 106171                    |
   | 4298                      |
   | 19037                     |
   | 128450                    |
   | 29381                     |
   | 183096                    |
   | 62144                     |
   | 88036                     |
   | 108571                    |
   | 123928                    |
   | 37532                     |
   | 139637                    |
   | 182053                    |
   | 145244                    |
   | 94781                     |
   +---------------------------+
   21 rows in set. Query took 0.034 seconds.
   ❯
   ````
   Seems not error during add


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

Reply via email to