forked from pingcap/dumpling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*: use
show full tables
in ListAllDatabasesTables (pingcap#325)
- Loading branch information
Showing
14 changed files
with
360 additions
and
47 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
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
2 changes: 2 additions & 0 deletions
2
dumpling/tests/quote/data/quote-database-schema-create-mysql57.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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/*!40101 SET NAMES binary*/; | ||
CREATE DATABASE `quo``te/database` /*!40100 DEFAULT CHARACTER SET latin1 */; |
7 changes: 7 additions & 0 deletions
7
dumpling/tests/quote/data/quote-database.quote-table-schema-mysql57.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/*!40101 SET NAMES binary*/; | ||
CREATE TABLE `quo``te/table` ( | ||
`quo``te/col` int(11) NOT NULL, | ||
`a` int(11) DEFAULT NULL, | ||
`gen``id` int(11) GENERATED ALWAYS AS (`quo``te/col`) VIRTUAL, | ||
PRIMARY KEY (`quo``te/col`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
13 changes: 13 additions & 0 deletions
13
dumpling/tests/quote/data/quote-database.quote-table.000000000-mysql57.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/*!40101 SET NAMES binary*/; | ||
INSERT INTO `quo``te/table` (`quo``te/col`,`a`) VALUES | ||
(0,10), | ||
(1,9), | ||
(2,8), | ||
(3,7), | ||
(4,6), | ||
(5,5), | ||
(6,4), | ||
(7,3), | ||
(8,2), | ||
(9,1), | ||
(10,0); |
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
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
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
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
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
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
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
Oops, something went wrong.