fix performance analysis query

This commit is contained in:
Michael Hoennig 2024-08-12 09:50:03 +02:00
parent 0b5f1bca70
commit 69e296c3b5

View File

@ -126,7 +126,7 @@ SELECT calls,
query query
FROM statements FROM statements
WHERE calls > 100 AND shared_blks_hit > 0 WHERE calls > 100 AND shared_blks_hit > 0
ORDER BY total_exec_time_mins DESC ORDER BY total_exec_time DESC
LIMIT 16; LIMIT 16;
``` ```