Skip to content

Commit f424ded

Browse files
authored
feat(write): add MERGE & UPDATE with DataEvolutionWriter (#241)
1 parent ac7d2b2 commit f424ded

14 files changed

Lines changed: 3871 additions & 253 deletions

File tree

crates/integrations/datafusion/src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,24 @@
3737
//! translatable partition-only conjuncts from DataFusion filters.
3838
3939
mod catalog;
40-
mod ddl;
4140
mod error;
4241
mod filter_pushdown;
4342
#[cfg(feature = "fulltext")]
4443
mod full_text_search;
44+
mod merge_into;
4545
mod physical_plan;
4646
mod relation_planner;
4747
pub mod runtime;
48+
mod sql_handler;
4849
mod system_tables;
4950
mod table;
51+
mod update;
5052

5153
pub use catalog::{PaimonCatalogProvider, PaimonSchemaProvider};
52-
pub use ddl::PaimonDdlHandler;
5354
pub use error::to_datafusion_error;
5455
#[cfg(feature = "fulltext")]
5556
pub use full_text_search::{register_full_text_search, FullTextSearchFunction};
5657
pub use physical_plan::PaimonTableScan;
5758
pub use relation_planner::PaimonRelationPlanner;
59+
pub use sql_handler::PaimonSqlHandler;
5860
pub use table::PaimonTableProvider;

0 commit comments

Comments
 (0)