Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
zealchen committed Apr 9, 2024
1 parent 5c6f2f4 commit a91e07b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/benchmarks/src/replay_bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ pub struct ReplayBench {
table: FixedSchemaTable,
}

impl Default for ReplayBench {
fn default() -> Self {
ReplayBench::new()
}
}

impl ReplayBench {
pub fn new() -> Self {
let runtime = util::new_runtime(1);
Expand Down Expand Up @@ -42,7 +48,7 @@ impl ReplayBench {

ReplayBench {
runtime: Arc::new(runtime),
test_ctx: test_ctx,
test_ctx,
table: fixed_schema_table,
}
}
Expand Down

0 comments on commit a91e07b

Please sign in to comment.