-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0aa67fb
commit ce15fe0
Showing
2 changed files
with
46 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 44 additions & 41 deletions
85
src/daft-connect/src/translation/logical_plan/with_columns_renamed.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,48 @@ | ||
use daft_dsl::col; | ||
use daft_logical_plan::LogicalPlanBuilder; | ||
use eyre::{bail, Context}; | ||
|
||
use crate::translation::Plan; | ||
|
||
pub async fn with_columns_renamed( | ||
with_columns_renamed: spark_connect::WithColumnsRenamed, | ||
) -> eyre::Result<Plan> { | ||
let spark_connect::WithColumnsRenamed { | ||
input, | ||
rename_columns_map, | ||
renames, | ||
} = with_columns_renamed; | ||
|
||
let Some(input) = input else { | ||
bail!("Input is required"); | ||
}; | ||
|
||
let mut plan = Box::pin(crate::translation::to_logical_plan(*input)).await?; | ||
|
||
// todo: let's implement this directly into daft | ||
|
||
// Convert the rename mappings into expressions | ||
let rename_exprs = if !rename_columns_map.is_empty() { | ||
// Use rename_columns_map if provided (legacy format) | ||
rename_columns_map | ||
.into_iter() | ||
.map(|(old_name, new_name)| col(old_name.as_str()).alias(new_name.as_str())) | ||
.collect() | ||
} else { | ||
// Use renames if provided (new format) | ||
renames | ||
.into_iter() | ||
.map(|rename| col(rename.col_name.as_str()).alias(rename.new_col_name.as_str())) | ||
.collect() | ||
}; | ||
|
||
// Apply the rename expressions to the plan | ||
plan.builder = plan | ||
.builder | ||
.select(rename_exprs) | ||
.wrap_err("Failed to apply rename expressions to logical plan")?; | ||
|
||
Ok(plan) | ||
use crate::translation::SparkAnalyzer; | ||
|
||
impl SparkAnalyzer<'_> { | ||
pub async fn with_columns_renamed( | ||
&self, | ||
with_columns_renamed: spark_connect::WithColumnsRenamed, | ||
) -> eyre::Result<LogicalPlanBuilder> { | ||
let spark_connect::WithColumnsRenamed { | ||
input, | ||
rename_columns_map, | ||
renames, | ||
} = with_columns_renamed; | ||
|
||
let Some(input) = input else { | ||
bail!("Input is required"); | ||
}; | ||
|
||
let plan = Box::pin(self.to_logical_plan(*input)).await?; | ||
|
||
// todo: let's implement this directly into daft | ||
|
||
// Convert the rename mappings into expressions | ||
let rename_exprs = if !rename_columns_map.is_empty() { | ||
// Use rename_columns_map if provided (legacy format) | ||
rename_columns_map | ||
.into_iter() | ||
.map(|(old_name, new_name)| col(old_name.as_str()).alias(new_name.as_str())) | ||
.collect() | ||
} else { | ||
// Use renames if provided (new format) | ||
renames | ||
.into_iter() | ||
.map(|rename| col(rename.col_name.as_str()).alias(rename.new_col_name.as_str())) | ||
.collect() | ||
}; | ||
|
||
// Apply the rename expressions to the plan | ||
let plan = plan | ||
.select(rename_exprs) | ||
.wrap_err("Failed to apply rename expressions to logical plan")?; | ||
|
||
Ok(plan) | ||
} | ||
} |