data_skipping_indices
包含所有表中现有数据跳过索引的信息。
列
database
(字符串) — 数据库名称。table
(字符串) — 表名称。name
(字符串) — 索引名称。type
(字符串) — 索引类型。type_full
(字符串) — 来自创建语句的索引类型表达式。expr
(字符串) — 索引计算表达式。granularity
(UInt64) — 块中的颗粒数。data_compressed_bytes
(UInt64) — 压缩数据的大小(以字节为单位)。data_uncompressed_bytes
(UInt64) — 解压缩数据的大小(以字节为单位)。marks_bytes
(UInt64) — 标记的大小(以字节为单位)。
示例
SELECT * FROM system.data_skipping_indices LIMIT 2 FORMAT Vertical;
Row 1:
──────
database: default
table: user_actions
name: clicks_idx
type: minmax
type_full: minmax
expr: clicks
granularity: 1
data_compressed_bytes: 58
data_uncompressed_bytes: 6
marks: 48
Row 2:
──────
database: default
table: users
name: contacts_null_idx
type: minmax
type_full: minmax
expr: assumeNotNull(contacts_null)
granularity: 1
data_compressed_bytes: 58
data_uncompressed_bytes: 6
marks: 48