Skip to content

Commit

Permalink
fix: remove redundant range length update call
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin-Ray committed Dec 20, 2024
1 parent 5c14765 commit 0a2ebbb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/proof-of-sql/src/sql/proof_plans/union_exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ impl ProverEvaluate for UnionExec {
let res = table_union(&inputs, alloc, self.schema.clone()).expect("Failed to union tables");
builder.request_post_result_challenges(2);
builder.produce_one_evaluation_length(res.num_rows());
builder.update_range_length(res.num_rows());
res
}

Expand Down

0 comments on commit 0a2ebbb

Please sign in to comment.