From b923819fc7f4e361784154844ecb9919c4118c68 Mon Sep 17 00:00:00 2001 From: Frank McSherry Date: Fri, 2 Jul 2021 20:27:22 -0400 Subject: [PATCH] deduplicate results --- doc/user/content/ops/diagnosing-using-sql.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/user/content/ops/diagnosing-using-sql.md b/doc/user/content/ops/diagnosing-using-sql.md index 3c8771db3a49e..72e0e4dd4c41a 100644 --- a/doc/user/content/ops/diagnosing-using-sql.md +++ b/doc/user/content/ops/diagnosing-using-sql.md @@ -178,7 +178,8 @@ from where mse.id = aebi.id and mse.elapsed_ns > 2 * aebi.avg_ns and - mse.id = dod.id + mse.id = dod.id and + mse.worker = dod.worker order by ratio desc; ```