title | summary |
---|---|
SHOW PLACEMENT LABELS |
The usage of SHOW PLACEMENT LABELS in TiDB. |
Warning:
Placement Rules in SQL is an experimental feature. The syntax might change before its GA, and there might also be bugs.
If you understand the risks, you can enable this experiment feature by executing
SET GLOBAL tidb_enable_alter_placement = 1;
.
SHOW PLACEMENT LABELS
is used to summarize the labels and values that are available for Placement Rules.
ShowStmt ::=
"PLACEMENT" "LABELS"
{{< copyable "sql" >}}
SHOW PLACEMENT LABELS;
+--------+----------------+
| Key | Values |
+--------+----------------+
| region | ["us-east-1"] |
| zone | ["us-east-1a"] |
+--------+----------------+
2 rows in set (0.00 sec)
This statement is a TiDB extension to MySQL syntax.