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
9e5bf5ae
Commit
9e5bf5ae
authored
Mar 29, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppress ANALYZE_TABLE output, to be consistent with rest of the test case
parent
9e97c1eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
mysql-test/r/join_cache.result
mysql-test/r/join_cache.result
+0
-2
mysql-test/t/join_cache.test
mysql-test/t/join_cache.test
+2
-1
No files found.
mysql-test/r/join_cache.result
View file @
9e5bf5ae
...
@@ -390,8 +390,6 @@ Czech Republic 10278100 NULL NULL
...
@@ -390,8 +390,6 @@ Czech Republic 10278100 NULL NULL
CREATE INDEX City_Population ON City(Population);
CREATE INDEX City_Population ON City(Population);
CREATE INDEX City_Name ON City(Name);
CREATE INDEX City_Name ON City(Name);
ANALYZE TABLE City;
ANALYZE TABLE City;
Table Op Msg_type Msg_text
world.City analyze status Table is already up to date
EXPLAIN
EXPLAIN
SELECT Country.Name, Country.Population, City.Name, City.Population
SELECT Country.Name, Country.Population, City.Name, City.Population
FROM Country LEFT JOIN City
FROM Country LEFT JOIN City
...
...
mysql-test/t/join_cache.test
View file @
9e5bf5ae
...
@@ -161,8 +161,9 @@ SELECT Country.Name, Country.Population, City.Name, City.Population
...
@@ -161,8 +161,9 @@ SELECT Country.Name, Country.Population, City.Name, City.Population
CREATE
INDEX
City_Population
ON
City
(
Population
);
CREATE
INDEX
City_Population
ON
City
(
Population
);
CREATE
INDEX
City_Name
ON
City
(
Name
);
CREATE
INDEX
City_Name
ON
City
(
Name
);
--
replace_result
city
City
--
disable_result_log
ANALYZE
TABLE
City
;
ANALYZE
TABLE
City
;
--
enable_result_log
EXPLAIN
EXPLAIN
SELECT
Country
.
Name
,
Country
.
Population
,
City
.
Name
,
City
.
Population
SELECT
Country
.
Name
,
Country
.
Population
,
City
.
Name
,
City
.
Population
...
...
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