-
Notifications
You must be signed in to change notification settings - Fork 9
Closed
Description
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
Metadata
Metadata
Assignees
Labels
No labels