Skip to content
Snippets Groups Projects
Commit f3eb3fc1 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Skip stripes that cannot match.

parent 194a26a1
No related tags found
No related merge requests found
......@@ -1904,8 +1904,11 @@ idxstripes_get_pos_exts_of_index_stripe(
continue;
}
}
else
{
else if ((stride != 0)
& (stride == db_stripe.stride)
& ((query.start - db_stripe.start) % stride != 0)) {
/* skip stripe that cannnot match at any position */
} else {
/* Handle complex overlap */
struct unmatched_tail search_result =
idxstripes_complex_get_pos_exts_of_index_stripe(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment