PostgreSQL - Performance Tuning
What will the following query return?
SELECT query, calls, mean_time FROM pg_stat_statements WHERE calls > 100 ORDER BY mean_time DESC LIMIT 2;
