Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjunetime committed Oct 22, 2024
1 parent b229807 commit a8e7c68
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions datafusion/sqllogictest/src/test_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,13 +334,12 @@ pub async fn register_metadata_tables(ctx: &SessionContext) {
),
]));

let schema =
Schema::new(vec![id, name, l_name, ts, nonnull_name]).with_metadata(HashMap::from([
(
String::from("metadata_key"),
String::from("the entire schema"),
),
]));
let schema = Schema::new(vec![id, name, l_name, ts, nonnull_name]).with_metadata(
HashMap::from([(
String::from("metadata_key"),
String::from("the entire schema"),
)]),
);

let batch = RecordBatch::try_new(
Arc::new(schema),
Expand Down

0 comments on commit a8e7c68

Please sign in to comment.