paleolimbot opened a new issue, #456:
URL: https://github.com/apache/arrow-adbc/issues/456
I get the following when running the release candidate verification:
```
======================================================= FAILURES
========================================================
__________________________________________________ test_query_fetch_py
__________________________________________________
sqlite = <adbc_driver_manager.dbapi.Connection object at 0x123eb6f20>
@pytest.mark.sqlite
def test_query_fetch_py(sqlite):
with sqlite.cursor() as cur:
cur.execute('SELECT 1, "foo", 2.0')
assert cur.description == [
("1", dbapi.NUMBER, None, None, None, None, None),
('"foo"', dbapi.STRING, None, None, None, None, None),
("2.0", dbapi.NUMBER, None, None, None, None, None),
]
assert cur.rownumber == 0
assert cur.fetchone() == (1, "foo", 2.0)
assert cur.rownumber == 1
assert cur.fetchone() is None
cur.execute('SELECT 1, "foo", 2.0')
> assert cur.fetchmany() == [(1, "foo", 2.0)]
E AssertionError: assert [(None, None, None)] == [(1, 'foo', 2.0)]
E At index 0 diff: (None, None, None) != (1, 'foo', 2.0)
E Full diff:
E - [(1, 'foo', 2.0)]
E + [(None, None, None)]
/var/folders/p5/sxv05ml96sd1n2p3ssfhzzth0000gn/T/arrow-adbc-0.2.0.XXXXX.qHCxRTQb/apache-arrow-adbc-0.2.0/python/adbc_driver_manager/tests/test_dbapi.py:193:
AssertionError
================================================ short test summary info
================================================
FAILED
../../../../../../../../var/folders/p5/sxv05ml96sd1n2p3ssfhzzth0000gn/T/arrow-adbc-0.2.0.XXXXX.qHCxRTQb/apache-arrow-adbc-0.2.0/python/adbc_driver_manager/tests/test_dbapi.py::test_query_fetch_py
- AssertionError: assert [(None, None, None)] == [(1, 'foo', 2.0)]
============================================= 1 failed, 34 passed in 3.15s
==============================================
Failed to verify release candidate. See
/var/folders/p5/sxv05ml96sd1n2p3ssfhzzth0000gn/T/arrow-adbc-0.2.0.XXXXX.qHCxRTQb
for details.
```
I'll try to do some digging to see what SQLite version is getting linked
to...it is probably the system sqlite shipped with MacOS.
--
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]