Skip to content

Commit d5d4f86

Browse files
committed
feat(datafusion): change visibility of repartition and adapt the partitioning strategy logic
Signed-off-by: Florian Valeye <[email protected]>
1 parent bda7c0c commit d5d4f86

File tree

3 files changed

+217
-50
lines changed

3 files changed

+217
-50
lines changed

crates/iceberg/src/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ impl Table {
236236
}
237237

238238
/// Returns the current schema as a shared reference.
239-
pub fn schema_ref(&self) -> SchemaRef {
239+
pub fn current_schema_ref(&self) -> SchemaRef {
240240
self.metadata.current_schema().clone()
241241
}
242242

crates/integrations/datafusion/src/physical_plan/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ pub(crate) mod write;
2626
pub(crate) const DATA_FILES_COL_NAME: &str = "data_files";
2727

2828
pub use project::project_with_partition;
29-
pub use repartition::repartition;
3029
pub use scan::IcebergTableScan;

0 commit comments

Comments
 (0)