Skip to content

Commit

Permalink
fix it error
Browse files Browse the repository at this point in the history
  • Loading branch information
asddongmen committed Nov 30, 2022
1 parent fdef274 commit 6582b3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests/bdr_mode/data/down.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ insert into `t1` values (2, '2'), (4, '4'), (6, '6'), (8, '8'), (10, '10');
commit;

begin;
update `t1` set `c1` = '22' where `id` = 2;
update `t1` set `name` = '22' where `id` = 2;
delete from `t1` where `id` = 4;
update `t1` set `c1` = '66' where `id` = 6;
update `t1` set `name` = '66' where `id` = 6;
delete from `t1` where `id` = 8;
commit;

Expand Down
4 changes: 2 additions & 2 deletions tests/integration_tests/bdr_mode/data/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ insert into `t1` values (1, '1'), (3, '3'), (5, '5'), (7, '7'), (9, '9');
commit;

begin;
update `t1` set `c1` = '11' where `id` = 1;
update `t1` set `name` = '11' where `id` = 1;
delete from `t1` where `id` = 3;
update `t1` set `c1` = '55' where `id` = 5;
update `t1` set `name` = '55' where `id` = 5;
delete from `t1` where `id` = 7;
commit;

Expand Down

0 comments on commit 6582b3f

Please sign in to comment.