birschick-bq opened a new pull request, #2665: URL: https://github.com/apache/arrow-adbc/pull/2665
This feature adds support for making native metadata queries to data source. The caller sets statement options to determine the metadata command and parameters. ### Statement Options | Option | Description | | --- | --- | | `adbc.apache.statement.is_metadata_command` | Indicate that the value of `SqlQuery` is a native metadata query. Empty or `true` indicates a metadata query command, and a value of `false` indicates a SQL query command. Supported native metadata commands for `SqlQuery` include `GetPrimaryKeys` and `GetCrossReference` | | `adbc.apache.catalog_name` | The catalog name. | | `adbc.apache.schema_name` | The schema name. | | `adbc.apache.table_name` | The table name. | | `adbc.apache.table_types` | The table types as a comma-separated list | | `adbc.apache.cross_reference.foreign_catalog_name` | The catalog name of the foreign (child) table. | | `adbc.apache.cross_reference.foreign_schema_name` | The schema name of the foreign (child) table. | | `adbc.apache.cross_reference.foreign_table_name` | The table name of the foreign (child) table. | -- 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]
