Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: tidb INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY 表 sql查询数据不准

I want to count the number of slow queries for a specific user.
select Time from INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY where user = 'app' and time < '2024-04-25 18:05:00';
The result shows 112 entries.
select count(Time) from INFORMATION_SCHEMA.CLUSTER_SLOW_QUERY where user = 'app';
It shows 63 entries. This is very strange; when the condition is relaxed, the count is actually lower.