You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/08/06 19:58:42 UTC

[GitHub] [arrow-datafusion] waitingkuo opened a new issue, #3059: INTEGER type does't work while importing csv

waitingkuo opened a new issue, #3059:
URL: https://github.com/apache/arrow-datafusion/issues/3059

   **Describe the bug**
   A clear and concise description of what the bug is.
   
   it works at v10.0.0, but doesn't work at master branch
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   ```bash
   echo "a\n1" > b.csv
   
   ➜  datafusion-cli git:(master) ✗ cargo run
       Finished dev [unoptimized + debuginfo] target(s) in 0.26s
        Running `target/debug/datafusion-cli`
   DataFusion CLI v10.0.0
   ❯ create external table b (a INTEGER) stored as csv with header row location 'b.csv';
   NotImplemented("The SQL data type Integer(None) is not implemented")
   ```
   
   while this works
   ```bash
   ❯ create external table b (a INT) stored as csv with header row location 'b.csv';
   0 rows in set. Query took 0.016 seconds.
   ```
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Additional context**
   Add any other context about the problem here.
   


-- 
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-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb closed issue #3059: INTEGER type does't work while importing csv

Posted by GitBox <gi...@apache.org>.
alamb closed issue #3059: INTEGER type does't work while importing csv
URL: https://github.com/apache/arrow-datafusion/issues/3059


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb commented on issue #3059: INTEGER type does't work while importing csv

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #3059:
URL: https://github.com/apache/arrow-datafusion/issues/3059#issuecomment-1215819173

   As this is a regression it would be nice to fix before 11 -- I will do so


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb commented on issue #3059: INTEGER type does't work while importing csv

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #3059:
URL: https://github.com/apache/arrow-datafusion/issues/3059#issuecomment-1215818294

   This is probably due to https://github.com/sqlparser-rs/sqlparser-rs/pull/525 -- 


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org