mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Fix system.parts _state column
There was LOGICAL_ERROR when querying this column, due to incorrect order: SELECT *, _state FROM system.parts 2021.01.21 10:22:57.731556 [ 22851 ] {02a07c6d-467d-4681-9203-4dc11cc6fbee} <Fatal> : Logical error: 'Invalid Field get from type String to type UInt64'.
This commit is contained in:
parent
ea0a49ed7a
commit
5f3059555a
@ -139,9 +139,6 @@ void StorageSystemParts::processNextStorage(MutableColumns & columns_, const Sto
|
|||||||
columns_[i++]->insertDefault();
|
columns_[i++]->insertDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (has_state_column)
|
|
||||||
columns_[i++]->insert(part->stateString());
|
|
||||||
|
|
||||||
MinimalisticDataPartChecksums helper;
|
MinimalisticDataPartChecksums helper;
|
||||||
helper.computeTotalChecksums(part->checksums);
|
helper.computeTotalChecksums(part->checksums);
|
||||||
|
|
||||||
@ -184,6 +181,10 @@ void StorageSystemParts::processNextStorage(MutableColumns & columns_, const Sto
|
|||||||
columns_[i++]->insert(queryToString(part->default_codec->getCodecDesc()));
|
columns_[i++]->insert(queryToString(part->default_codec->getCodecDesc()));
|
||||||
|
|
||||||
add_ttl_info_map(part->ttl_infos.recompression_ttl);
|
add_ttl_info_map(part->ttl_infos.recompression_ttl);
|
||||||
|
|
||||||
|
/// _state column should be the latest.
|
||||||
|
if (has_state_column)
|
||||||
|
columns_[i++]->insert(part->stateString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
14
tests/queries/0_stateless/01660_system_parts_smoke.reference
Normal file
14
tests/queries/0_stateless/01660_system_parts_smoke.reference
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# two parts
|
||||||
|
Committed
|
||||||
|
Committed
|
||||||
|
all_1_1_0 Committed
|
||||||
|
all_2_2_0 Committed
|
||||||
|
all_1_1_0 1
|
||||||
|
all_2_2_0 1
|
||||||
|
# optimize
|
||||||
|
2 Outdated
|
||||||
|
1 Committed
|
||||||
|
# truncate
|
||||||
|
Outdated
|
||||||
|
Outdated
|
||||||
|
# drop
|
41
tests/queries/0_stateless/01660_system_parts_smoke.sql
Normal file
41
tests/queries/0_stateless/01660_system_parts_smoke.sql
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
-- There is different code path when:
|
||||||
|
-- - _state is not requested
|
||||||
|
-- - _state is requested
|
||||||
|
-- - only _state is requested
|
||||||
|
SELECT * FROM system.parts FORMAT Null;
|
||||||
|
SELECT *, _state FROM system.parts FORMAT Null;
|
||||||
|
SELECT _state FROM system.parts FORMAT Null;
|
||||||
|
|
||||||
|
-- Create one table and see some columns in system.parts
|
||||||
|
DROP TABLE IF EXISTS data_01660;
|
||||||
|
CREATE TABLE data_01660 (key Int) Engine=MergeTree() ORDER BY key;
|
||||||
|
SYSTEM STOP MERGES data_01660;
|
||||||
|
|
||||||
|
-- Empty
|
||||||
|
SELECT _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
SELECT name, _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
SELECT name, active FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
|
||||||
|
-- Add part and check again
|
||||||
|
SELECT '# two parts';
|
||||||
|
INSERT INTO data_01660 VALUES (0);
|
||||||
|
INSERT INTO data_01660 VALUES (1);
|
||||||
|
SELECT _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
SELECT name, _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
SELECT name, active FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
|
||||||
|
-- OPTIMIZE to create Outdated parts
|
||||||
|
SELECT '# optimize';
|
||||||
|
SYSTEM START MERGES data_01660;
|
||||||
|
OPTIMIZE TABLE data_01660 FINAL;
|
||||||
|
SELECT count(), _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660' GROUP BY _state;
|
||||||
|
|
||||||
|
-- TRUNCATE does not remove parts instantly
|
||||||
|
SELECT '# truncate';
|
||||||
|
TRUNCATE data_01660;
|
||||||
|
SELECT _state FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
||||||
|
|
||||||
|
-- But DROP does
|
||||||
|
SELECT '# drop';
|
||||||
|
DROP TABLE data_01660;
|
||||||
|
SELECT * FROM system.parts WHERE database = currentDatabase() AND table = 'data_01660';
|
Loading…
Reference in New Issue
Block a user