lidavidm commented on issue #1045:
URL: https://github.com/apache/arrow-adbc/issues/1045#issuecomment-1710487668

   Indeed...
   ```python
   >>> import pyarrow
   >>> import adbc_driver_postgresql.dbapi
   >>> conn = 
adbc_driver_postgresql.dbapi.connect('postgres://postgres:password@localhost:5432/postgres')
   >>> cur = conn.cursor()
   >>> import pyarrow
   >>> table = pyarrow.table([[1,2]], names=["a"])
   >>> cur.execute('CREATE TEMPORARY TABLE foo (a BIGINT)')
   >>> cur.adbc_ingest('foo', table, mode='append')
   Traceback (most recent call last):
     File "<stdin>", line 1, in <module>
     File 
"/home/lidavidm/venv/lib/python3.10/site-packages/adbc_driver_manager/dbapi.py",
 line 789, in adbc_ingest
       return self._stmt.execute_update()
     File "adbc_driver_manager/_lib.pyx", line 1068, in 
adbc_driver_manager._lib.AdbcStatement.execute_update
     File "adbc_driver_manager/_lib.pyx", line 399, in 
adbc_driver_manager._lib.check_error
   adbc_driver_manager.OperationalError: IO: [libpq] Failed to execute prepared 
statement: 
   ```


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