Skip to content

Commit

Permalink
Resolve Conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Fantayeneh Asres Gizaw committed Jan 30, 2025
1 parent 22dd6b3 commit 2e5a7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {
rows.len() * types.len()
};

if self.hash_threshold > 0 && rows.len() * types.len() > self.hash_threshold {
if self.hash_threshold > 0 && num_values > self.hash_threshold {
let mut md5 = md5::Md5::new();
for line in &rows {
for value in line {
Expand Down

0 comments on commit 2e5a7a3

Please sign in to comment.