jonahgao commented on code in PR #11183:
URL: https://github.com/apache/datafusion/pull/11183#discussion_r1662614512
##########
datafusion/core/src/catalog/mod.rs:
##########
@@ -16,16 +16,30 @@
// under the License.
//! Interfaces and default implementations of catalogs and schemas.
+//!
+//! Traits:
+//! * [`CatalogProviderList`]: a collection of `CatalogProvider`s
+//! * [`CatalogProvider`]: a collection of [`SchemaProvider`]s (sometimes
called a "database" in other systems)
+//! * [`SchemaProvider`]: a collection of `TableProvider`s (often called a
"schema" in other systems)
+//!
+//! Implementations
+//! * Simple memory based catalog: [`MemoryCatalogProviderList`],
[`MemoryCatalogProvider`], [`MemorySchemaProvider`]
+//! * Information schema: [`information_schema`]
+//! * Listing schema: [`listing_schema`]
pub mod information_schema;
pub mod listing_schema;
+mod memory;
pub mod schema;
+pub use memory::{
Review Comment:
👍
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]