ClickHouse/dbms/tests/queries/0_stateless/00961_checksums_in_system_parts_columns_table.sql

18 lines
449 B
MySQL
Raw Normal View History

2019-07-05 13:33:28 +00:00
DROP TABLE IF EXISTS test_00961;
CREATE TABLE test_00961 (d Date, a String, b UInt8, x String, y Int8, z UInt32) ENGINE = MergeTree(d, (a, b), 111);
INSERT INTO test_00961 VALUES ('2000-01-01', 'Hello, world!', 123, 'xxx yyy', -123, 123456789);
SELECT
name,
table,
hash_of_all_files,
hash_of_uncompressed_files,
uncompressed_hash_of_compressed_files
2019-07-05 15:32:55 +00:00
FROM system.parts
2019-07-05 13:33:28 +00:00
WHERE table = 'test_00961';
DROP TABLE test_00961;