diff --git a/tests/performance/hashed_dictionary.xml b/tests/performance/hashed_dictionary.xml
index 5cbe1caeb23..26164b4f888 100644
--- a/tests/performance/hashed_dictionary.xml
+++ b/tests/performance/hashed_dictionary.xml
@@ -94,10 +94,6 @@
LIMIT {elements_count}
FORMAT Null;
-
- SELECT * FROM default.simple_key_hashed_dictionary
- FORMAT Null;
-
WITH rand64() % toUInt64({elements_count}) as key
SELECT dictHas('default.simple_key_hashed_dictionary', key)
@@ -113,10 +109,6 @@
LIMIT {elements_count}
FORMAT Null;
-
- SELECT * FROM default.complex_key_hashed_dictionary
- FORMAT Null;
-
WITH (rand64() % toUInt64({elements_count}), toString(rand64() % toUInt64({elements_count}))) as key
SELECT dictHas('default.complex_key_hashed_dictionary', key)