Skip to content

Commit

Permalink
user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Apr 1, 2024
1 parent 8a3599b commit bcbdba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/rust/user-guide/transformations/joins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
df_orders.clone().lazy(),
[col("customer_id")],
[col("customer_id")],
JoinArgs::new(JoinType::Outer { coalesce: false }),
JoinArgs::new(JoinType::Outer),
)
.collect()?;
println!("{}", &df_outer_join);
Expand All @@ -72,7 +72,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
df_orders.clone().lazy(),
[col("customer_id")],
[col("customer_id")],
JoinArgs::new(JoinType::Outer { coalesce: true }),
JoinArgs::new(JoinType::Outer),
)
.collect()?;
println!("{}", &df_outer_join);
Expand Down

0 comments on commit bcbdba4

Please sign in to comment.