pub struct PaimonSchemaProvider { /* private fields */ }Expand description
Represents a SchemaProvider for the Paimon Catalog, managing
access to table providers within a specific database.
Tables are loaded lazily when accessed via the table() method.
Implementations§
Source§impl PaimonSchemaProvider
impl PaimonSchemaProvider
Sourcepub fn new(
catalog_name: Option<String>,
catalog: Arc<dyn Catalog>,
database: String,
dynamic_options: Arc<RwLock<HashMap<String, String>>>,
temp_provider: Option<Arc<MemorySchemaProvider>>,
blob_reader_registry: BlobReaderRegistry,
session_state: Option<Arc<dyn Fn() -> Option<SessionState> + Send + Sync>>,
) -> Self
pub fn new( catalog_name: Option<String>, catalog: Arc<dyn Catalog>, database: String, dynamic_options: Arc<RwLock<HashMap<String, String>>>, temp_provider: Option<Arc<MemorySchemaProvider>>, blob_reader_registry: BlobReaderRegistry, session_state: Option<Arc<dyn Fn() -> Option<SessionState> + Send + Sync>>, ) -> Self
Creates a new PaimonSchemaProvider.
Trait Implementations§
Source§impl Debug for PaimonSchemaProvider
impl Debug for PaimonSchemaProvider
Source§impl SchemaProvider for PaimonSchemaProvider
impl SchemaProvider for PaimonSchemaProvider
Source§fn table_names(&self) -> Vec<String>
fn table_names(&self) -> Vec<String>
Retrieves the list of available table names in this schema.
Source§fn table<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = DFResult<Option<Arc<dyn TableProvider>>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn table<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = DFResult<Option<Arc<dyn TableProvider>>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Retrieves a specific table from the schema by name, if it exists,
otherwise returns
None.Source§fn table_type<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = DFResult<Option<TableType>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn table_type<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = DFResult<Option<TableType>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Retrieves the type of a specific table from the schema by name, if it exists, otherwise
returns
None. Implementations for which this operation is cheap but Self::table is
expensive can override this to improve operations that only need the type, e.g.
SELECT * FROM information_schema.tables.Source§fn table_exist(&self, name: &str) -> bool
fn table_exist(&self, name: &str) -> bool
Returns true if table exist in the schema provider, false otherwise.
Source§fn register_table(
&self,
_name: String,
table: Arc<dyn TableProvider>,
) -> DFResult<Option<Arc<dyn TableProvider>>>
fn register_table( &self, _name: String, table: Arc<dyn TableProvider>, ) -> DFResult<Option<Arc<dyn TableProvider>>>
If supported by the implementation, adds a new table named
name to
this schema. Read moreSource§fn deregister_table(
&self,
name: &str,
) -> DFResult<Option<Arc<dyn TableProvider>>>
fn deregister_table( &self, name: &str, ) -> DFResult<Option<Arc<dyn TableProvider>>>
If supported by the implementation, removes the
name table from this
schema and returns the previously registered TableProvider, if any. Read moreSource§fn owner_name(&self) -> Option<&str>
fn owner_name(&self) -> Option<&str>
Returns the owner of the Schema, default is None. This value is reported
as part of `information_tables.schemata
Auto Trait Implementations§
impl !Freeze for PaimonSchemaProvider
impl !RefUnwindSafe for PaimonSchemaProvider
impl !UnwindSafe for PaimonSchemaProvider
impl Send for PaimonSchemaProvider
impl Sync for PaimonSchemaProvider
impl Unpin for PaimonSchemaProvider
impl UnsafeUnpin for PaimonSchemaProvider
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSend for Twhere
T: Send,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.