vogelsgesang opened a new issue, #178:
URL: https://github.com/apache/arrow-flight-sql-postgresql/issues/178

   I tried using this extension through ADBC from Python, using the following 
script
   
   ```
   import adbc_driver_flightsql.dbapi as flight_sql
   
   with flight_sql.connect(uri="grpc://localhost:15432",
                           db_kwargs={"username": "avogelsgesang",
                                      
"adbc.flight.sql.rpc.call_header.x-flight-sql-database": "avogelsgesang"
                                      }
                           ) as conn:
      with conn.cursor() as cur:
          cur.execute("SELECT 42;")
          x = cur.fetch_arrow_table()
          print(x)
   ```
   
   **Observed behavior**: The script is hanging forever


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