-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Minor: Move MemoryCatalog*Provider into a module, improve comments #11183
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
Conversation
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
//! [`MemoryCatalogProvider`], [`MemoryCatalogProviderList`]: In-memory implementations of [`CatalogListProvider`] and [`CatalogProvider`]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The point of the PR is to move the memory implementations into this module
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
pub mod schema; | ||
|
||
pub use memory::{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thank you for the review @jonahgao |
…pache#11183) * Minor: Move MemoryCatalog*Provider into a module, improve comments * fix docs
Which issue does this PR close?
part of #11182
Rationale for this change
There is a distinction between catalog API (the traits) and the provided simple implementations (e.g.
MemoryCatalogProvider*
) that is not well reflected in the module structure now.If we make the code structure better mirror the distinction, it will both be clearer and set us up for future simplifications
What changes are included in this PR?
pub use
Are these changes tested?
With existing CI
Are there any user-facing changes?
Better docs, no functional change