Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkovsky committed Jan 10, 2025
1 parent 05a475b commit 8e73cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/core/tests/sql/metadata_columns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ async fn select_metadata_column() {
assert_eq!(bytes, "id,UInt8\nbank_account,UInt64\n");
let select0 = "SELECT * FROM test order by id";
let df0 = ctx.sql_with_options(select0, options).await.unwrap();
assert!(!df0.schema().has_column_with_unqualified_name(&"_rowid"));
assert!(!df0.schema().has_column_with_unqualified_name("_rowid"));

let all_batchs = df0.collect().await.unwrap();
let batch = concat_batches(&all_batchs[0].schema(), &all_batchs).unwrap();
Expand Down

0 comments on commit 8e73cbe

Please sign in to comment.