Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Nov 8, 2024
1 parent 75d9cea commit 7f002bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/batch/src/executor/iceberg_scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ impl BoxedExecutorBuilder for IcebergScanExecutorBuilder {
);
let config = ConnectorProperties::extract(options_with_secret.clone(), false)?;

assert_eq!(source_node.split.len(), 1, "Iceberg source should have one split!");
assert_eq!(
source_node.split.len(),
1,
"Iceberg source should have one split!"
);
let split_list = source_node
.split
.iter()
Expand Down

0 comments on commit 7f002bb

Please sign in to comment.