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
3d19d37c
Commit
3d19d37c
authored
Apr 25, 2003
by
lenz@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Updated innodb test results on Heikki's request (InnoDB now supports
ANALYZE TABLE)
parent
8867a6c4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
.bzrignore
.bzrignore
+1
-0
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+3
-3
No files found.
.bzrignore
View file @
3d19d37c
...
@@ -530,3 +530,4 @@ vio/test-ssl
...
@@ -530,3 +530,4 @@ vio/test-ssl
vio/test-sslclient
vio/test-sslclient
vio/test-sslserver
vio/test-sslserver
vio/viotest-ssl
vio/viotest-ssl
support-files/MacOSX/ReadMe.txt
mysql-test/r/innodb.result
View file @
3d19d37c
...
@@ -208,7 +208,7 @@ create index skr on t1 (a);
...
@@ -208,7 +208,7 @@ create index skr on t1 (a);
insert into t1 values (3,""), (4,"testing");
insert into t1 values (3,""), (4,"testing");
analyze table t1;
analyze table t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 analyze
error The handler for the table doesn't support analyze
test.t1 analyze
status OK
show keys from t1;
show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
t1 1 skr 1 a A 3 NULL NULL YES BTREE
t1 1 skr 1 a A 3 NULL NULL YES BTREE
...
@@ -1227,10 +1227,10 @@ count(*)
...
@@ -1227,10 +1227,10 @@ count(*)
29267
29267
explain select a from t1 where a between 1 and 10000;
explain select a from t1 where a between 1 and 10000;
table type possible_keys key key_len ref rows Extra
table type possible_keys key key_len ref rows Extra
t1 range PRIMARY PRIMARY 4 NULL 147
90
Using where; Using index
t1 range PRIMARY PRIMARY 4 NULL 147
45
Using where; Using index
explain select * from t1 where a between 1 and 10000;
explain select * from t1 where a between 1 and 10000;
table type possible_keys key key_len ref rows Extra
table type possible_keys key key_len ref rows Extra
t1 range PRIMARY PRIMARY 4 NULL 147
90
Using where
t1 range PRIMARY PRIMARY 4 NULL 147
45
Using where
explain select * from t1 where c between 1 and 10000;
explain select * from t1 where c between 1 and 10000;
table type possible_keys key key_len ref rows Extra
table type possible_keys key key_len ref rows Extra
t1 range c c 5 NULL 1 Using where
t1 range c c 5 NULL 1 Using where
...
...
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