-
Notifications
You must be signed in to change notification settings - Fork 1.5k
moving memory.rs out of datafusion/core #14332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
de521f4
6a2173c
dac5db4
d7e5249
e183d57
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,16 @@ | |
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
//! Interfaces and default implementations of catalogs and schemas. | ||
//! | ||
//! Implementations | ||
//! * Simple memory based catalog: [`MemoryCatalogProviderList`], [`MemoryCatalogProvider`], [`MemorySchemaProvider`] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure if this is the correct place/way to put this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this looks good One way to review this is to run |
||
|
||
pub mod memory; | ||
pub use memory::{ | ||
MemoryCatalogProvider, MemoryCatalogProviderList, MemorySchemaProvider, | ||
}; | ||
|
||
mod r#async; | ||
mod catalog; | ||
mod dynamic_file; | ||
|
Uh oh!
There was an error while loading. Please reload this page.