You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "WillAyd (via GitHub)" <gi...@apache.org> on 2024/04/15 19:39:21 UTC

[I] SQLite Driver Incorrectly Returns int64 data type for REAL column [arrow-adbc]

WillAyd opened a new issue, #1724:
URL: https://github.com/apache/arrow-adbc/issues/1724

   ### What happened?
   
   ```python
   from adbc_driver_sqlite import dbapi
   
   uri = "file::memory:"
   with dbapi.connect(uri) as conn:
       with conn.cursor() as cur:
           cur.execute("CREATE TABLE IF NOT EXISTS sample (col REAL);")
           cur.execute("SELECT * FROM sample")
           print(cur.fetch_arrow_table())
   
   pyarrow.Table
   col: int64
   ----
   col: [[]]
   ```
   
   ### How can we reproduce the bug?
   
   See above
   
   ### Environment/Setup
   
   adbc version 0.11


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

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


Re: [I] SQLite Driver Incorrectly Returns int64 data type for REAL column [arrow-adbc]

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm commented on issue #1724:
URL: https://github.com/apache/arrow-adbc/issues/1724#issuecomment-2057792091

   This has the same underlying cause as https://github.com/apache/arrow-adbc/issues/581. SQLite column types aren't, er, real. 


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


Re: [I] SQLite Driver Incorrectly Returns int64 data type for REAL column [arrow-adbc]

Posted by "WillAyd (via GitHub)" <gi...@apache.org>.
WillAyd commented on issue #1724:
URL: https://github.com/apache/arrow-adbc/issues/1724#issuecomment-2057802682

   Ah thanks - yea let's close this and track in the original issue the.  Sorry for the duplicate


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


Re: [I] SQLite Driver Incorrectly Returns int64 data type for REAL column [arrow-adbc]

Posted by "WillAyd (via GitHub)" <gi...@apache.org>.
WillAyd closed issue #1724: SQLite Driver Incorrectly Returns int64 data type for REAL column
URL: https://github.com/apache/arrow-adbc/issues/1724


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

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