From 8c5ab0cf581f8bdd760186939388ed181c8b76e4 Mon Sep 17 00:00:00 2001 From: WizardXiao Date: Fri, 3 Dec 2021 20:12:18 +0800 Subject: [PATCH] commit-message: fix integration test about quote --- dumpling/tests/quote/data/quote-database-schema-create.sql | 2 +- .../tests/quote/data/quote-database.quote-table-schema.sql | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/dumpling/tests/quote/data/quote-database-schema-create.sql b/dumpling/tests/quote/data/quote-database-schema-create.sql index 51382d46a55ba..d4a6ef081cc11 100755 --- a/dumpling/tests/quote/data/quote-database-schema-create.sql +++ b/dumpling/tests/quote/data/quote-database-schema-create.sql @@ -1,3 +1,3 @@ /*!40101 SET NAMES binary*/; /*T![placement] SET PLACEMENT_CHECKS = 0*/; -CREATE DATABASE `quo``te/database` /*!40100 DEFAULT CHARACTER SET latin1 */ /*!80016 DEFAULT ENCRYPTION='N' */; +CREATE DATABASE `quo``te/database` CHARACTER SET = latin1 ENCRYPTION = 'N' COLLATE = latin1_swedish_ci; diff --git a/dumpling/tests/quote/data/quote-database.quote-table-schema.sql b/dumpling/tests/quote/data/quote-database.quote-table-schema.sql index f460fca838469..2a42478f5c1c9 100755 --- a/dumpling/tests/quote/data/quote-database.quote-table-schema.sql +++ b/dumpling/tests/quote/data/quote-database.quote-table-schema.sql @@ -1,8 +1,3 @@ /*!40101 SET NAMES binary*/; /*T![placement] SET PLACEMENT_CHECKS = 0*/; -CREATE TABLE `quo``te/table` ( - `quo``te/col` int NOT NULL, - `a` int DEFAULT NULL, - `gen``id` int GENERATED ALWAYS AS (`quo``te/col`) VIRTUAL, - PRIMARY KEY (`quo``te/col`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; +CREATE TABLE `quo``te/table` (`quo``te/col` INT NOT NULL,`a` INT DEFAULT NULL,`gen``id` INT GENERATED ALWAYS AS(`quo``te/col`) VIRTUAL,PRIMARY KEY(`quo``te/col`)) ENGINE = InnoDB DEFAULT CHARACTER SET = LATIN1 DEFAULT COLLATE = LATIN1_SWEDISH_CI;