* gaflightsql_client_new: * @client: A #GAFlightClient to be used. * * Returns:: The newly created Flight SQL client. * * Since: 9.0.0 */
| 469 | * Since: 9.0.0 |
| 470 | */ |
| 471 | GAFlightSQLClient * |
| 472 | gaflightsql_client_new(GAFlightClient *client) |
| 473 | { |
| 474 | auto flight_client = gaflight_client_get_raw(client); |
| 475 | auto flight_sql_client = new arrow::flight::sql::FlightSqlClient(flight_client); |
| 476 | return gaflightsql_client_new_raw(flight_sql_client, client); |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * gaflightsql_client_execute: |
nothing calls this directly
no test coverage detected