paleolimbot commented on PR #2178:
URL: https://github.com/apache/arrow-adbc/pull/2178#issuecomment-2369441695

   I'm having trouble getting the details to propagate through to Python! The C 
test passes:
   
   
https://github.com/apache/arrow-adbc/blob/99d3887ff8a3d501a1290429178dcdcdc690041d/c/driver/postgresql/postgresql_test.cc#L609-L674
   
   ...but the Python one doesn't?
   
   ```python
   from adbc_driver_postgresql import dbapi
   
   postgres = 
dbapi.connect("postgresql://localhost:5432/postgres?user=postgres&password=password")
   
   try:
       with postgres.cursor() as cur:
           cur.execute("SELECT * FROM tabledoesnotexist")
   except postgres.ProgrammingError as e:
       print(e)
       print(e.details)
   ```
   
   (Should be non-empty details)


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