mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-09 17:14:47 +00:00
Add tests for SHOW INDEX from tables with dots
This commit is contained in:
parent
146edca4f7
commit
dca72d2e0b
@ -49,3 +49,10 @@ tbl 1 PRIMARY 1 a A 0 \N \N \N PRIMARY YES
|
||||
--- Short form
|
||||
tbl 1 mmi_idx 1 \N 0 \N \N \N MINMAX YES b
|
||||
tbl 1 PRIMARY 1 a A 0 \N \N \N PRIMARY YES
|
||||
--- SHOW INDEX FROM table with dots
|
||||
tab.with.dots 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tab.with.dots 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tab.with.dots 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tab.with.dots 1 PRIMARY 1 c A 0 \N \N \N PRIMARY YES
|
||||
tab.with.dots 1 PRIMARY 2 a A 0 \N \N \N PRIMARY YES
|
||||
tab.with.dots 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
|
@ -78,3 +78,22 @@ SHOW INDEX FROM database_123456789abcde.tbl;
|
||||
DROP DATABASE database_123456789abcde;
|
||||
|
||||
DROP TABLE tbl;
|
||||
|
||||
DROP TABLE IF EXISTS `tab.with.dots`;
|
||||
CREATE TABLE `tab.with.dots`
|
||||
(
|
||||
a UInt64,
|
||||
b UInt64,
|
||||
c UInt64,
|
||||
d UInt64,
|
||||
e UInt64,
|
||||
INDEX mm1_idx (a, c, d) TYPE minmax,
|
||||
INDEX mm2_idx (c, d, e) TYPE minmax,
|
||||
INDEX set_idx (e) TYPE set(100),
|
||||
INDEX blf_idx (d, b) TYPE bloom_filter(0.8)
|
||||
)
|
||||
ENGINE = MergeTree
|
||||
PRIMARY KEY (c, a);
|
||||
SELECT '--- SHOW INDEX FROM table with dots';
|
||||
SHOW INDEX FROM `tab.with.dots`;
|
||||
DROP TABLE `tab.with.dots`;
|
||||
|
Loading…
Reference in New Issue
Block a user