From 51f845aaa967d61bc4671bd9311cc47b09a9f524 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Aug 2026 03:44:32 +0000 Subject: [PATCH 1/2] Initial plan From 8212111f05e5ef0472c80b8fc79a82c17c873021 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Aug 2026 03:46:48 +0000 Subject: [PATCH 2/2] Fix server sampler test mock signature Co-authored-by: zaoxing <2923149+zaoxing@users.noreply.github.com> --- tests/test_clickhouse_host_benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_clickhouse_host_benchmark.py b/tests/test_clickhouse_host_benchmark.py index 06407c437..3ea298a75 100644 --- a/tests/test_clickhouse_host_benchmark.py +++ b/tests/test_clickhouse_host_benchmark.py @@ -509,7 +509,7 @@ class Client: def __init__(self): self.calls = 0 - def execute(self, query): + def execute(self, query, params=None): self.calls += 1 if "system.processes" in query: return [(2,)]