-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit-message: fix integration test about quote
- Loading branch information
1 parent
8d27963
commit 8c5ab0c
Showing
2 changed files
with
2 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |
7 changes: 1 addition & 6 deletions
7
dumpling/tests/quote/data/quote-database.quote-table-schema.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |