-
Notifications
You must be signed in to change notification settings - Fork 293
Closed
Labels
affects-5.3affects-5.4This bug affects the 5.4.x(LTS) versions.This bug affects the 5.4.x(LTS) versions.affects-6.0affects-6.1This bug affects the 6.1.x(LTS) versions.This bug affects the 6.1.x(LTS) versions.affects-6.2affects-6.3affects-6.4affects-6.5This bug affects the 6.5.x(LTS) versions.This bug affects the 6.5.x(LTS) versions.affects-6.6affects-7.0affects-7.1This bug affects the 7.1.x(LTS) versions.This bug affects the 7.1.x(LTS) versions.affects-7.2affects-7.3affects-7.4affects-7.5This bug affects the 7.5.x(LTS) versions.This bug affects the 7.5.x(LTS) versions.affects-7.6area/dmIssues or PRs related to DM.Issues or PRs related to DM.severity/criticaltype/bugThe issue is confirmed as a bug.The issue is confirmed as a bug.
Description
What did you do?
create an incremental task, execute following queries in upstream
create table tb(a int, b binary(16) primary key);
insert into tb(a,b) values(1,0xBF500C00A2034521B819D6EB7065D200);
update tb set a=a+1 where b=0xBF500C00A2034521B819D6EB7065D200
What did you expect to see?
mysql> select * from tb;
+------+------------------------------------+
| a | b |
+------+------------------------------------+
| 2 | 0xBF500C00A2034521B819D6EB7065D200 |
+------+------------------------------------+
What did you see instead?
mysql> select * from tb;
+------+------------------------------------+
| a | b |
+------+------------------------------------+
| 1 | 0xBF500C00A2034521B819D6EB7065D200 |
+------+------------------------------------+
Versions of the cluster
DM version (run dmctl -V
or dm-worker -V
or dm-master -V
):
(paste DM version here, and you must ensure versions of dmctl, DM-worker and DM-master are same)
Upstream MySQL/MariaDB server version:
(paste upstream MySQL/MariaDB server version here)
Downstream TiDB cluster version (execute SELECT tidb_version();
in a MySQL client):
(paste TiDB cluster version here)
How did you deploy DM: tiup or manually?
(leave TiUP or manually here)
Other interesting information (system version, hardware config, etc):
>
>
current status of DM cluster (execute query-status <task-name>
in dmctl)
(paste current status of DM cluster here)
Metadata
Metadata
Assignees
Labels
affects-5.3affects-5.4This bug affects the 5.4.x(LTS) versions.This bug affects the 5.4.x(LTS) versions.affects-6.0affects-6.1This bug affects the 6.1.x(LTS) versions.This bug affects the 6.1.x(LTS) versions.affects-6.2affects-6.3affects-6.4affects-6.5This bug affects the 6.5.x(LTS) versions.This bug affects the 6.5.x(LTS) versions.affects-6.6affects-7.0affects-7.1This bug affects the 7.1.x(LTS) versions.This bug affects the 7.1.x(LTS) versions.affects-7.2affects-7.3affects-7.4affects-7.5This bug affects the 7.5.x(LTS) versions.This bug affects the 7.5.x(LTS) versions.affects-7.6area/dmIssues or PRs related to DM.Issues or PRs related to DM.severity/criticaltype/bugThe issue is confirmed as a bug.The issue is confirmed as a bug.
Type
Projects
Status
Done