Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5ff2db7f
Commit
5ff2db7f
authored
Jul 10, 2017
by
Elena Stepanova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Follow-up for MDEV-13089 (identifier quoting in partitioning)
Adjust results for storage_engine tests
parent
4df726e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
mysql-test/suite/storage_engine/parts/truncate_table.result
mysql-test/suite/storage_engine/parts/truncate_table.result
+4
-4
storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff
...mmrg/mysql-test/storage_engine/parts/truncate_table.rdiff
+4
-4
No files found.
mysql-test/suite/storage_engine/parts/truncate_table.result
View file @
5ff2db7f
...
...
@@ -14,7 +14,7 @@ t1 CREATE TABLE `t1` (
`c` char(8) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
PARTITION BY HASH (
a
)
PARTITION BY HASH (
`a`
)
PARTITIONS 2
INSERT INTO t1 (c) VALUES ('a'),('b'),('c');
SHOW CREATE TABLE t1;
...
...
@@ -24,7 +24,7 @@ t1 CREATE TABLE `t1` (
`c` char(8) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
PARTITION BY HASH (
a
)
PARTITION BY HASH (
`a`
)
PARTITIONS 2
TRUNCATE TABLE t1;
SHOW CREATE TABLE t1;
...
...
@@ -34,7 +34,7 @@ t1 CREATE TABLE `t1` (
`c` char(8) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
PARTITION BY HASH (
a
)
PARTITION BY HASH (
`a`
)
PARTITIONS 2
INSERT INTO t1 (c) VALUES ('d');
SHOW CREATE TABLE t1;
...
...
@@ -44,7 +44,7 @@ t1 CREATE TABLE `t1` (
`c` char(8) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
PARTITION BY HASH (
a
)
PARTITION BY HASH (
`a`
)
PARTITIONS 2
SELECT a,c FROM t1;
a c
...
...
storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff
View file @
5ff2db7f
...
...
@@ -27,7 +27,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
- PARTITION BY HASH (
a
)
- PARTITION BY HASH (
`a`
)
-PARTITIONS 2
-INSERT INTO t1 (c) VALUES ('a'),('b'),('c');
-SHOW CREATE TABLE t1;
...
...
@@ -37,7 +37,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
- PARTITION BY HASH (
a
)
- PARTITION BY HASH (
`a`
)
-PARTITIONS 2
-TRUNCATE TABLE t1;
-SHOW CREATE TABLE t1;
...
...
@@ -47,7 +47,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
- PARTITION BY HASH (
a
)
- PARTITION BY HASH (
`a`
)
-PARTITIONS 2
-INSERT INTO t1 (c) VALUES ('d');
-SHOW CREATE TABLE t1;
...
...
@@ -57,7 +57,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
- PARTITION BY HASH (
a
)
- PARTITION BY HASH (
`a`
)
-PARTITIONS 2
-SELECT a,c FROM t1;
-a c
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment