Fix table name

This commit is contained in:
Alexander Gololobov 2024-11-15 15:31:40 +01:00 committed by GitHub
parent e085f14aa6
commit c81dccdcdf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
-- Force PK load -- Force PK load
SELECT CounterID FROM datasets.hits_v1 WHERE CounterID > 0 LIMIT 1 FORMAT Null; SELECT CounterID FROM test.hits WHERE CounterID > 0 LIMIT 1 FORMAT Null;
-- Check PK size -- Check PK size
SELECT primary_key_bytes_in_memory > 0, primary_key_bytes_in_memory < 16000, primary_key_bytes_in_memory_allocated < 16000, primary_key_bytes_in_memory_allocated / primary_key_bytes_in_memory < 1.1 FROM system.parts WHERE database = 'test' AND table = 'hits'; SELECT primary_key_bytes_in_memory > 0, primary_key_bytes_in_memory < 16000, primary_key_bytes_in_memory_allocated < 16000, primary_key_bytes_in_memory_allocated / primary_key_bytes_in_memory < 1.1 FROM system.parts WHERE database = 'test' AND table = 'hits';