Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lidezhu committed Oct 22, 2024
1 parent 822eebd commit d13782b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/integration_tests/safe_mode/data/create_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ drop database if exists `safe_mode`;
create database `safe_mode`;
use `safe_mode`;

create table `safe_mode.t`(id int key, a varchar(200));
create table `safe_mode`.`t`(id int key, a varchar(200));
3 changes: 2 additions & 1 deletion tests/integration_tests/safe_mode/data/insert.sql
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
insert into `safe_mode.t` values (1, "hello"), (2, "world");
insert into `safe_mode.t` values(1, "hello");
insert into `safe_mode.t` values(2, "world");
4 changes: 2 additions & 2 deletions tests/integration_tests/safe_mode/data/update.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-- update non key column
update `safe_mode.t` set a = "hello2" where id = 1;
update `safe_mode.t` set a = "world2" where id = 2;
update `safe_mode`.`t` set a = "hello2" where id = 1;
update `safe_mode`.`t` set a = "world2" where id = 2;

0 comments on commit d13782b

Please sign in to comment.