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)
deploy a cluster with tikv and execute the following sqls.
CREATETABLE `account1` (
`uid`bigint(19) unsigned NOT NULL,
`status`int(1) unsigned NOT NULL,
`name`varchar(140) NOT NULL,
`password`varchar(9) NOT NULL,
`deposit_switch`int(1) unsigned NOT NULL,
`draw_switch`int(1) unsigned NOT NULL,
`institution_id`int(10) unsigned NOT NULL,
`employee_id`bigint(11) unsigned NOT NULL,
`update_time`dateNOT NULL,
`sign_time`dateNOT NULL,
`logout_time`dateNOT NULL,
index indx(name),
index indx2(uid),
index indx3(update_time),
PRIMARY KEY (`uid`,`update_time`)
);
ALTERTABLE
account1
ADD
COLUMN b INT,
ADD
INDEX idx(employee_id),
alter column
status
set
default 1,
alterindex indx invisible,
MODIFY COLUMN password varCHAR(11),
dropindex indx2,
rename column deposit_switch to deposit2_switch,
rename index indx3 to idx3,
COMMENT ='comments for t';
admin show ddl jobs;
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
the ddl should be synced
3. What did you see instead (Required)
It can not stop for a long time. It works ok without tikv.
tidb log
4. What is your TiDB version? (Required)
The text was updated successfully, but these errors were encountered: