Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions crates/integrations/datafusion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,23 @@
//! translatable partition-only conjuncts from DataFusion filters.

mod catalog;
mod ddl;
mod error;
mod filter_pushdown;
#[cfg(feature = "fulltext")]
mod full_text_search;
mod merge_into;
mod physical_plan;
mod relation_planner;
pub mod runtime;
mod sql_handler;
mod table;
mod update;

pub use catalog::{PaimonCatalogProvider, PaimonSchemaProvider};
pub use ddl::PaimonDdlHandler;
pub use error::to_datafusion_error;
#[cfg(feature = "fulltext")]
pub use full_text_search::{register_full_text_search, FullTextSearchFunction};
pub use physical_plan::PaimonTableScan;
pub use relation_planner::PaimonRelationPlanner;
pub use sql_handler::PaimonSqlHandler;
pub use table::PaimonTableProvider;
Loading
Loading