You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
mysql> show global variables like "%tidb_enable_metadata_lock%";
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| tidb_enable_metadata_lock | ON |
+---------------------------+-------+
1 row in set (0.00 sec)
mysql> set global tidb_enable_metadata_lock=0;
Query OK, 0 rows affected (0.15 sec)
mysql> show global variables like "%tidb_enable_metadata_lock%";
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| tidb_enable_metadata_lock | OFF |
+---------------------------+-------+
1 row in set (0.00 sec)
mysql> set global tidb_enable_metadata_lock=1;
Query OK, 0 rows affected (0.02 sec)
mysql> show global variables like "%tidb_enable_metadata_lock%";
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| tidb_enable_metadata_lock | OFF |
+---------------------------+-------+
1 row in set (0.00 sec)
2. What did you expect to see? (Required)
mysql> set global tidb_enable_metadata_lock=1;
Query OK, 0 rows affected (0.02 sec)
mysql> show global variables like "%tidb_enable_metadata_lock%";
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| tidb_enable_metadata_lock | ON |
+---------------------------+-------+
1 row in set (0.00 sec)
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
3. What did you see instead (Required)
Is it the reason for the problem?
tidb/ddl/ddl.go
Line 1247 in 96e345d
4. What is your TiDB version? (Required)
The text was updated successfully, but these errors were encountered: