mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Point to existing system tables for alternatives
This commit is contained in:
parent
82e38f7736
commit
966e93b908
@ -286,21 +286,21 @@ equivalent. If no database is specified, the query assumes the current database
|
||||
The optional keyword `EXTENDED` currently has no effect, it only exists for MySQL compatibility.
|
||||
|
||||
The statement produces a result table with the following structure:
|
||||
- table - The name of the table (String)
|
||||
- table - The name of the table. (String)
|
||||
- non_unique - Always `1` as ClickHouse does not support uniqueness constraints. (UInt8)
|
||||
- key_name - The name of the index, `PRIMARY` if the index is a primary key index (String)
|
||||
- seq_in_index - Currently unused
|
||||
- column_name - Currently unused
|
||||
- collation - The sorting of the column in the index, `A` if ascending, `D` if descending, `NULL` if unsorted (Nullable(String))
|
||||
- key_name - The name of the index, `PRIMARY` if the index is a primary key index. (String)
|
||||
- seq_in_index - Currently always `1`. (In MySQL, this field denotes the position of the column in a non-functional index.) (UInt8)
|
||||
- column_name - Currently always `` (empty string), also see field `expression`. (In MySQL, this field denotes the name of the column in a non-functional index.) (String)
|
||||
- collation - The sorting of the column in the index: `A` if ascending, `D` if descending, `NULL` if unsorted. (Nullable(String))
|
||||
- cardinality - An estimation of the index cardinality (number of unique values in the index). Currently always 0. (UInt64)
|
||||
- sub_part - Always `NULL` because ClickHouse does not support index prefixes like MySQL (Nullable(String))
|
||||
- packed - Always `NULL` because ClickHouse does not support packed (prefix-compressed) indexes like MySQL (Nullable(String))
|
||||
- sub_part - Always `NULL` because ClickHouse does not support index prefixes like MySQL. (Nullable(String))
|
||||
- packed - Always `NULL` because ClickHouse does not support packed indexes (like MySQL). (Nullable(String))
|
||||
- null - Currently unused
|
||||
- index_type - The index type, e.g. `PRIMARY`, `MINMAX`, `BLOOM_FILTER` etc. (String)
|
||||
- comment - Additional information about the index, currently always `` (empty string) (String)
|
||||
- index_comment - `` (empty string) because indexes in ClickHouse cannot have a `COMMENT` field like in MySQL (String)
|
||||
- visible - If the index is visible to the optimizer, always `YES` (String)
|
||||
- expression - The index expression (String)
|
||||
- comment - Additional information about the index, currently always `` (empty string). (String)
|
||||
- index_comment - `` (empty string) because indexes in ClickHouse cannot have a `COMMENT` field (like in MySQL). (String)
|
||||
- visible - If the index is visible to the optimizer, always `YES`. (String)
|
||||
- expression - The index expression. (In MySQL this field is only used for functional-indexes.) (String)
|
||||
|
||||
**Examples**
|
||||
|
||||
@ -314,11 +314,11 @@ Result:
|
||||
|
||||
``` text
|
||||
┌─table─┬─non_unique─┬─key_name─┬─seq_in_index─┬─column_name─┬─collation─┬─cardinality─┬─sub_part─┬─packed─┬─null─┬─index_type───┬─comment─┬─index_comment─┬─visible─┬─expression─┐
|
||||
│ tbl │ 1 │ blf_idx │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ BLOOM_FILTER │ │ │ YES │ d, b │
|
||||
│ tbl │ 1 │ mm1_idx │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ MINMAX │ │ │ YES │ a, c, d │
|
||||
│ tbl │ 1 │ mm2_idx │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ MINMAX │ │ │ YES │ c, d, e │
|
||||
│ tbl │ 1 │ PRIMARY │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ A │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ PRIMARY │ │ │ YES │ c, a │
|
||||
│ tbl │ 1 │ set_idx │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ SET │ │ │ YES │ e │
|
||||
│ tbl │ 1 │ blf_idx │ 1 │ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ BLOOM_FILTER │ │ │ YES │ d, b │
|
||||
│ tbl │ 1 │ mm1_idx │ 1 │ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ MINMAX │ │ │ YES │ a, c, d │
|
||||
│ tbl │ 1 │ mm2_idx │ 1 │ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ MINMAX │ │ │ YES │ c, d, e │
|
||||
│ tbl │ 1 │ PRIMARY │ 1 │ │ A │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ PRIMARY │ │ │ YES │ c, a │
|
||||
│ tbl │ 1 │ set_idx │ 1 │ │ ᴺᵁᴸᴸ │ 0 │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ SET │ │ │ YES │ e │
|
||||
└───────┴────────────┴──────────┴──────────────┴─────────────┴───────────┴─────────────┴──────────┴────────┴──────┴──────────────┴─────────┴───────────────┴─────────┴────────────┘
|
||||
```
|
||||
|
||||
|
@ -42,8 +42,8 @@ FROM (
|
||||
name AS table,
|
||||
1 AS non_unique,
|
||||
'PRIMARY' AS key_name,
|
||||
NULL AS seq_in_index,
|
||||
NULL AS column_name,
|
||||
1 AS seq_in_index,
|
||||
'' AS column_name,
|
||||
'A' AS collation,
|
||||
0 AS cardinality,
|
||||
NULL AS sub_part,
|
||||
@ -63,8 +63,8 @@ FROM (
|
||||
table AS table,
|
||||
1 AS non_unique,
|
||||
name AS key_name,
|
||||
NULL AS seq_in_index,
|
||||
NULL AS column_name,
|
||||
1 AS seq_in_index,
|
||||
'' AS column_name,
|
||||
NULL AS collation,
|
||||
0 AS cardinality,
|
||||
NULL AS sub_part,
|
||||
|
@ -1,45 +1,45 @@
|
||||
--- Aliases of SHOW INDEX
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
--- EXTENDED
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
--- WHERE
|
||||
--- Check with weird table names
|
||||
$4@^7 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c
|
||||
NULL 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c
|
||||
\' 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c
|
||||
\' 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c
|
||||
$4@^7 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c
|
||||
NULL 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c
|
||||
\' 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c
|
||||
\' 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c
|
||||
--- Original table
|
||||
tbl 1 blf_idx \N \N \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx \N \N \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx \N \N \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx \N \N \N 0 \N \N \N SET YES e
|
||||
tbl 1 blf_idx 1 \N 0 \N \N \N BLOOM_FILTER YES d, b
|
||||
tbl 1 mm1_idx 1 \N 0 \N \N \N MINMAX YES a, c, d
|
||||
tbl 1 mm2_idx 1 \N 0 \N \N \N MINMAX YES c, d, e
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES c, a
|
||||
tbl 1 set_idx 1 \N 0 \N \N \N SET YES e
|
||||
--- Equally named table in other database
|
||||
tbl 1 mmi_idx \N \N \N 0 \N \N \N MINMAX YES b
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES a
|
||||
tbl 1 mmi_idx 1 \N 0 \N \N \N MINMAX YES b
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES a
|
||||
--- Short form
|
||||
tbl 1 mmi_idx \N \N \N 0 \N \N \N MINMAX YES b
|
||||
tbl 1 PRIMARY \N \N A 0 \N \N \N PRIMARY YES a
|
||||
tbl 1 mmi_idx 1 \N 0 \N \N \N MINMAX YES b
|
||||
tbl 1 PRIMARY 1 A 0 \N \N \N PRIMARY YES a
|
||||
|
Loading…
Reference in New Issue
Block a user