Skip to content

Commit

Permalink
Check familyHash if present
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Aug 23, 2019
1 parent 5c59ff9 commit 73a55b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/collectors/queries.blade.php
Expand Up @@ -13,7 +13,7 @@
$num_slow++;
}
$query_time += $query->content['time'] ?? 0;
$queries[$query->content['sql']] = $query->content['sql'];
$queries[$query->familyHash ?: $query->content['sql']] = $query->content['sql'];
}

$num_duplicated = $num_queries - count($queries);
Expand Down

0 comments on commit 73a55b1

Please sign in to comment.