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
358268a4
Commit
358268a4
authored
Oct 07, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#122 fix tests that need to show default row format
parent
e0fb1138
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result
...st/suite/tokudb.alter_table/r/hot_row_format_alter.result
+1
-0
mysql-test/suite/tokudb.alter_table/r/row_format_alter.result
...l-test/suite/tokudb.alter_table/r/row_format_alter.result
+2
-1
mysql-test/suite/tokudb.alter_table/t/hot_row_format_alter.test
...test/suite/tokudb.alter_table/t/hot_row_format_alter.test
+1
-0
mysql-test/suite/tokudb.alter_table/t/row_format_alter.test
mysql-test/suite/tokudb.alter_table/t/row_format_alter.test
+1
-0
No files found.
mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result
View file @
358268a4
SET DEFAULT_STORAGE_ENGINE='tokudb';
set tokudb_hide_default_row_format=false;
DROP TABLE IF EXISTS foo;
set session tokudb_disable_slow_alter=ON;
CREATE TABLE foo(a int auto_increment, b int, primary key(a))engine=TokuDB;
...
...
mysql-test/suite/tokudb.alter_table/r/row_format_alter.result
View file @
358268a4
SET DEFAULT_STORAGE_ENGINE='tokudb';
set tokudb_hide_default_row_format=false;
DROP TABLE IF EXISTS foo;
CREATE TABLE foo (c1 int not null primary key) engine=TokuDB;
SELECT CREATE_OPTIONS
...
...
@@ -10,7 +11,7 @@ Table Create Table
foo CREATE TABLE `foo` (
`c1` int(11) NOT NULL,
PRIMARY KEY (`c1`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1
) ENGINE=TokuDB DEFAULT CHARSET=latin1
ROW_FORMAT=TOKUDB_ZLIB
ALTER TABLE foo row_format=tokudb_lzma, add column c2 int not null;
SELECT CREATE_OPTIONS
FROM INFORMATION_SCHEMA.TABLES WHERE (table_name LIKE 'foo');
...
...
mysql-test/suite/tokudb.alter_table/t/hot_row_format_alter.test
View file @
358268a4
...
...
@@ -3,6 +3,7 @@
# Verify that row format changes are non-blocking, hot operations.
#
SET
DEFAULT_STORAGE_ENGINE
=
'tokudb'
;
set
tokudb_hide_default_row_format
=
false
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
foo
;
...
...
mysql-test/suite/tokudb.alter_table/t/row_format_alter.test
View file @
358268a4
...
...
@@ -4,6 +4,7 @@
# other ALTER TABLE statements.
#
SET
DEFAULT_STORAGE_ENGINE
=
'tokudb'
;
set
tokudb_hide_default_row_format
=
false
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
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