-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(mysqldump): support mysqldump dump schema with:mysqldump --set-…
…gtid-purged=OFF --no-tablespaces --no-data --triggers=0 --column-statistics=0 -uroot -h127.0.0.1 -P3307 dd1
- Loading branch information
Showing
11 changed files
with
115 additions
and
46 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a INT NO 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
DROP DATABASE IF EXISTS ss; | ||
|
||
CREATE DATABASE ss; | ||
|
||
USE ss; | ||
|
||
CREATE TABLE t1(a INT); | ||
SHOW FIELDS FROM t1; | ||
|
||
DROP DATABASE IF EXISTS ss; |
20 changes: 10 additions & 10 deletions
20
tests/suites/0_stateless/20+_others/20_0000_describe_table.result
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,10 +1,10 @@ | ||
a BIGINT YES NULL | ||
b INT YES NULL | ||
c VARCHAR YES NULL | ||
d SMALLINT NO 0 | ||
e DATE16 NO 0 | ||
a BIGINT YES NULL | ||
b INT YES NULL | ||
c VARCHAR YES NULL | ||
d SMALLINT NO 0 | ||
e DATE16 NO 0 | ||
a BIGINT YES NULL | ||
b INT YES NULL | ||
c VARCHAR YES NULL | ||
d SMALLINT NO 0 | ||
e DATE16 NO 0 | ||
a BIGINT YES NULL | ||
b INT YES NULL | ||
c VARCHAR YES NULL | ||
d SMALLINT NO 0 | ||
e DATE16 NO 0 |