chore: correct typo 🔨

pull/24376/head
Stuart Carnie 2023-04-16 08:32:01 +10:00
parent acd6cff631
commit ccfd334834
No known key found for this signature in database
GPG Key ID: 848D9C9718D78B4F
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ SELECT FIRST(usage_idle) FROM cpu WHERE time >= '2022-10-31T02:00:00Z' AND time
SELECT FIRST(usage_idle), MAX(usage_idle) FROM cpu;
-- Mixing selectors and aggregates,
-- timetamp should be start of each window
-- timestamp should be start of each window
SELECT FIRST(usage_idle), COUNT(usage_idle) FROM cpu WHERE time >= '2022-10-31T02:00:00Z' AND time < '2022-10-31T02:02:00Z' GROUP BY TIME(30s), cpu, device LIMIT 1;
--