Skip to content

Commit

Permalink
fix last failing test :fingerscrossed:
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Sep 12, 2024
1 parent e7ed21e commit ce3425a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions datafusion/core/src/datasource/physical_plan/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1329,15 +1329,15 @@ mod tests {

let df = ctx.sql(r#"select * from t1"#).await?.collect().await?;
let expected = [
"+-------+------------------------+",
"| col1 | col2 |",
"+-------+------------------------+",
"| 1 | hello\rworld |",
"| 2 | something\relse |",
"+-------+-----------------------------+",
"| col1 | col2 |",
"+-------+-----------------------------+",
"| 1 | hello\rworld |",
"| 2 | something\relse |",
"| 3 | \rmany\rlines\rmake\rgood test\r |",
"| 4 | unquoted |",
"| value | end |",
"+-------+------------------------+",
"| 4 | unquoted |",
"| value | end |",
"+-------+-----------------------------+",
];
crate::assert_batches_eq!(expected, &df);
Ok(())
Expand Down

0 comments on commit ce3425a

Please sign in to comment.