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
73e26527
Commit
73e26527
authored
Nov 25, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge msvensson@bk-internal.mysql.com:/home/bk/mysql-5.0
into devsrv-b.mysql.com:/space/magnus/mysql-5.0
parents
48cea5fa
98b81f0a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sql/opt_range.cc
sql/opt_range.cc
+4
-4
No files found.
sql/opt_range.cc
View file @
73e26527
...
...
@@ -3136,10 +3136,10 @@ TRP_ROR_INTERSECT *get_best_covering_ror_intersect(PARAM *param,
/* F=F-covered by first(I) */
bitmap_union
(
&
covered_fields
,
&
(
*
ror_scan_mark
)
->
covered_fields
);
all_covered
=
bitmap_is_subset
(
&
param
->
needed_fields
,
&
covered_fields
);
}
while
(
!
all_covered
&&
(
++
ror_scan_mark
<
ror_scans_end
)
);
}
while
(
(
++
ror_scan_mark
<
ror_scans_end
)
&&
!
all_covered
);
if
(
!
all_covered
)
DBUG_RETURN
(
NULL
);
/* should not happen actually */
if
(
!
all_covered
||
(
ror_scan_mark
-
tree
->
ror_scans
)
==
1
)
DBUG_RETURN
(
NULL
);
/*
Ok, [tree->ror_scans .. ror_scan) holds covering index_intersection with
...
...
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