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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
1f46374f
Commit
1f46374f
authored
Oct 19, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#131 make fast and small aliases for quicklz and lzma. fix tests.
parent
43dec550
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result
...st/suite/tokudb.alter_table/r/hot_row_format_alter.result
+2
-2
mysql-test/suite/tokudb.alter_table/r/row_format_alter.result
...l-test/suite/tokudb.alter_table/r/row_format_alter.result
+2
-2
mysql-test/suite/tokudb.bugs/r/5695.result
mysql-test/suite/tokudb.bugs/r/5695.result
+2
-2
No files found.
mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result
View file @
1f46374f
...
...
@@ -69,7 +69,7 @@ foo CREATE TABLE `foo` (
`a` int(11) NOT NULL AUTO_INCREMENT,
`b` int(11) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
FAST
) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
QUICKLZ
select * from foo;
a b
1 11
...
...
@@ -82,7 +82,7 @@ foo CREATE TABLE `foo` (
`a` int(11) NOT NULL AUTO_INCREMENT,
`b` int(11) DEFAULT NULL,
PRIMARY KEY (`a`)
) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
SMALL
) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
LZMA
select * from foo;
a b
1 11
...
...
mysql-test/suite/tokudb.alter_table/r/row_format_alter.result
View file @
1f46374f
...
...
@@ -81,7 +81,7 @@ foo CREATE TABLE `foo` (
`c5` int(11) NOT NULL,
`c6` int(11) NOT NULL,
PRIMARY KEY (`c1`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
FAST
) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
QUICKLZ
ALTER TABLE foo row_format=TOKUDB_SMALL, add column c7 int not null;
SELECT CREATE_OPTIONS
FROM INFORMATION_SCHEMA.TABLES WHERE (table_name LIKE 'foo');
...
...
@@ -98,5 +98,5 @@ foo CREATE TABLE `foo` (
`c6` int(11) NOT NULL,
`c7` int(11) NOT NULL,
PRIMARY KEY (`c1`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
SMALL
) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_
LZMA
DROP TABLE foo;
mysql-test/suite/tokudb.bugs/r/5695.result
View file @
1f46374f
...
...
@@ -3,12 +3,12 @@ DROP TABLE IF EXISTS foo;
create table foo (a int)ROW_FORMAT=tokudb_small;
select ROW_FORMAT from information_schema.tables where table_name='foo';
ROW_FORMAT
tokudb_
small
tokudb_
lzma
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_fast;
select ROW_FORMAT from information_schema.tables where table_name='foo';
ROW_FORMAT
tokudb_
fast
tokudb_
quicklz
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_zlib;
select ROW_FORMAT from information_schema.tables where table_name='foo';
...
...
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