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
97bbf3af
Commit
97bbf3af
authored
Nov 01, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update tokudb test results
parent
163b5eeb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
storage/tokudb/mysql-test/tokudb/r/cluster_2968-1.result
storage/tokudb/mysql-test/tokudb/r/cluster_2968-1.result
+8
-0
storage/tokudb/mysql-test/tokudb/r/cluster_2968-2.result
storage/tokudb/mysql-test/tokudb/r/cluster_2968-2.result
+4
-0
storage/tokudb/mysql-test/tokudb/r/cluster_2968-3.result
storage/tokudb/mysql-test/tokudb/r/cluster_2968-3.result
+6
-0
storage/tokudb/mysql-test/tokudb_alter_table/r/hcad_tmp_tables_56.result
...mysql-test/tokudb_alter_table/r/hcad_tmp_tables_56.result
+2
-0
No files found.
storage/tokudb/mysql-test/tokudb/r/cluster_2968-1.result
View file @
97bbf3af
...
@@ -1044,7 +1044,11 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -1044,7 +1044,11 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s ALL b NULL NULL NULL 1000 Using where
1 SIMPLE s ALL b NULL NULL NULL 1000 Using where
1 SIMPLE t ref b b 5 test.s.b 11
1 SIMPLE t ref b b 5 test.s.b 11
alter table s add key(b) clustering=yes;
alter table s add key(b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_2' defined on the table 'test.s'. This is deprecated and will be disallowed in a future release.
alter table t add key(b) clustering=yes;
alter table t add key(b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_2' defined on the table 'test.t'. This is deprecated and will be disallowed in a future release.
show create table s;
show create table s;
Table Create Table
Table Create Table
s CREATE TABLE `s` (
s CREATE TABLE `s` (
...
@@ -1090,7 +1094,11 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -1090,7 +1094,11 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b_2 b_2 5 NULL 1000 Using where; Using index
1 SIMPLE s index b_2 b_2 5 NULL 1000 Using where; Using index
1 SIMPLE t ref b_2 b_2 5 test.s.b 11 Using index
1 SIMPLE t ref b_2 b_2 5 test.s.b 11 Using index
alter table s add key(b);
alter table s add key(b);
Warnings:
Note 1831 Duplicate index 'b' defined on the table 'test.s'. This is deprecated and will be disallowed in a future release.
alter table t add key(b);
alter table t add key(b);
Warnings:
Note 1831 Duplicate index 'b' defined on the table 'test.t'. This is deprecated and will be disallowed in a future release.
show create table s;
show create table s;
Table Create Table
Table Create Table
s CREATE TABLE `s` (
s CREATE TABLE `s` (
...
...
storage/tokudb/mysql-test/tokudb/r/cluster_2968-2.result
View file @
97bbf3af
...
@@ -1068,7 +1068,11 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -1068,7 +1068,11 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b,b_2 b_2 10 NULL 1000 Using where; Using index
1 SIMPLE s index b,b_2 b_2 10 NULL 1000 Using where; Using index
1 SIMPLE t ref b,b_2 b_2 5 test.s.b 11 Using index
1 SIMPLE t ref b,b_2 b_2 5 test.s.b 11 Using index
alter table s add key(b) clustering=yes;
alter table s add key(b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_3' defined on the table 'test.s'. This is deprecated and will be disallowed in a future release.
alter table t add key(b) clustering=yes;
alter table t add key(b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_3' defined on the table 'test.t'. This is deprecated and will be disallowed in a future release.
show create table s;
show create table s;
Table Create Table
Table Create Table
s CREATE TABLE `s` (
s CREATE TABLE `s` (
...
...
storage/tokudb/mysql-test/tokudb/r/cluster_2968-3.result
View file @
97bbf3af
...
@@ -1065,8 +1065,14 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -1065,8 +1065,14 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t ref b b 5 test.s.b 11
1 SIMPLE t ref b b 5 test.s.b 11
1 SIMPLE u ref c c 5 test.s.c 11
1 SIMPLE u ref c c 5 test.s.c 11
alter table s add key (b) clustering=yes;
alter table s add key (b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_2' defined on the table 'test.s'. This is deprecated and will be disallowed in a future release.
alter table t add key (b) clustering=yes;
alter table t add key (b) clustering=yes;
Warnings:
Note 1831 Duplicate index 'b_2' defined on the table 'test.t'. This is deprecated and will be disallowed in a future release.
alter table u add key (c) clustering=yes;
alter table u add key (c) clustering=yes;
Warnings:
Note 1831 Duplicate index 'c_2' defined on the table 'test.u'. This is deprecated and will be disallowed in a future release.
show create table s;
show create table s;
Table Create Table
Table Create Table
s CREATE TABLE `s` (
s CREATE TABLE `s` (
...
...
storage/tokudb/mysql-test/tokudb_alter_table/r/hcad_tmp_tables_56.result
View file @
97bbf3af
...
@@ -4,6 +4,8 @@ set session tokudb_disable_slow_alter=ON;
...
@@ -4,6 +4,8 @@ set session tokudb_disable_slow_alter=ON;
create temporary table bar (a int, key(a))engine=TOkuDB;
create temporary table bar (a int, key(a))engine=TOkuDB;
alter table bar add column c int default 0;
alter table bar add column c int default 0;
create index blah on bar(a);
create index blah on bar(a);
Warnings:
Note 1831 Duplicate index 'blah' defined on the table 'test.bar'. This is deprecated and will be disallowed in a future release.
drop index a on bar;
drop index a on bar;
set session tokudb_disable_slow_alter=OFF;
set session tokudb_disable_slow_alter=OFF;
insert into bar (a) values (1),(2),(3);
insert into bar (a) values (1),(2),(3);
...
...
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