Skip to content

Commit

Permalink
test(ticdc): fix data inconsistence on integration_tests (#11584)
Browse files Browse the repository at this point in the history
close #11583
  • Loading branch information
wk989898 committed Sep 11, 2024
1 parent 434eda4 commit c826978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration_tests/kafka_simple_basic/data/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ alter table tp_time add column c_timestamp2 timestamp default now();
insert into tp_time(c_date, c_datetime, c_timestamp, c_time, c_year)
values ('2024-03-09', '2022-02-22 22:22:22', '2020-02-20 02:20:20', '02:20:20', '2021');

delete from tp_time where id in (2, 3, 4);
delete from tp_time where id in (1, 2, 3, 4, 5);

alter table tp_time alter column c_timestamp2 drop default;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ alter table tp_time add column c_timestamp2 timestamp default now();
insert into tp_time(c_date, c_datetime, c_timestamp, c_time, c_year)
values ('2024-03-09', '2022-02-22 22:22:22', '2020-02-20 02:20:20', '02:20:20', '2021');

delete from tp_time where id in (2, 3, 4);
delete from tp_time where id in (1, 2, 3, 4, 5);

alter table tp_time alter column c_timestamp2 drop default;

Expand Down

0 comments on commit c826978

Please sign in to comment.