docs: Add ticket reference for other upstream implementations of flightsql (#7891)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Andrew Lamb 2023-05-30 09:33:17 -04:00 committed by GitHub
parent 7d1d636358
commit a4789b0ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -10,6 +10,9 @@ use datafusion::prelude::SessionContext;
use once_cell::sync::Lazy;
/// Returns the list of catalogs in the DataFusion catalog
///
/// TODO: use upstream implementation when
/// <https://github.com/apache/arrow-rs/pull/4296> is available
pub(crate) fn get_catalogs(ctx: &SessionContext) -> Result<RecordBatch> {
let mut catalog_names = ctx.catalog_names();
catalog_names.sort_unstable();

View File

@ -11,7 +11,10 @@ use datafusion::prelude::SessionContext;
use once_cell::sync::Lazy;
/// Implementation of FlightSQL GetDbSchemas
///
/// TODO: use upstream implementation when
/// <https://github.com/apache/arrow-rs/pull/4296> is available
///
/// Return a RecordBatch for the GetDbSchemas
///
/// # Parameters

View File

@ -17,7 +17,8 @@ use once_cell::sync::Lazy;
/// Return a RecordBatch for the GetTables
///
/// Return a `LogicalPlan` for GetTables
/// TODO: use upstream implementation when
/// <https://github.com/apache/arrow-rs/pull/4296> is available
///
/// # Parameters
///