diff --git a/tests/integration_tests/safe_mode/data/create_table.sql b/tests/integration_tests/safe_mode/data/create_table.sql index 541149e8b09..32527df3a94 100644 --- a/tests/integration_tests/safe_mode/data/create_table.sql +++ b/tests/integration_tests/safe_mode/data/create_table.sql @@ -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)); \ No newline at end of file +create table `safe_mode`.`t`(id int key, a varchar(200)); \ No newline at end of file diff --git a/tests/integration_tests/safe_mode/data/insert.sql b/tests/integration_tests/safe_mode/data/insert.sql index ab0f2e34fd9..9e767f2f4cb 100644 --- a/tests/integration_tests/safe_mode/data/insert.sql +++ b/tests/integration_tests/safe_mode/data/insert.sql @@ -1 +1,2 @@ -insert into `safe_mode.t` values (1, "hello"), (2, "world"); \ No newline at end of file +insert into `safe_mode.t` values(1, "hello"); +insert into `safe_mode.t` values(2, "world"); \ No newline at end of file diff --git a/tests/integration_tests/safe_mode/data/update.sql b/tests/integration_tests/safe_mode/data/update.sql index 7ad79ff9d92..690443da5f4 100644 --- a/tests/integration_tests/safe_mode/data/update.sql +++ b/tests/integration_tests/safe_mode/data/update.sql @@ -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; \ No newline at end of file +update `safe_mode`.`t` set a = "hello2" where id = 1; +update `safe_mode`.`t` set a = "world2" where id = 2; \ No newline at end of file