We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 094e66d commit dc03f40Copy full SHA for dc03f40
1 file changed
datafusion/core/src/dataframe.rs
@@ -521,7 +521,7 @@ impl DataFrame {
521
}
522
523
/// Return the unoptimized logical plan represented by this DataFrame.
524
- pub fn to_unoptimized_logical_plan(&self) -> LogicalPlan {
+ pub fn to_unoptimized_plan(&self) -> LogicalPlan {
525
// Optimize the plan first for better UX
526
self.plan.clone()
527
@@ -1272,7 +1272,7 @@ mod tests {
1272
\n Inner Join: #t1.c1 = #t2.c1\
1273
\n TableScan: t1\
1274
\n TableScan: t2",
1275
- format!("{:?}", df_renamed.to_unoptimized_logical_plan())
+ format!("{:?}", df_renamed.to_unoptimized_plan())
1276
);
1277
1278
assert_eq!("\
0 commit comments