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
parent
7d1d636358
commit
a4789b0ad3
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue