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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
336a27b4
Commit
336a27b4
authored
Jul 05, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge marko@bk-internal.mysql.com:/home/bk/mysql-5.0
into hundin.mysql.fi:/home/marko/mysql-5.0-current
parents
08f6d9b5
0cca9a51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
9 deletions
+12
-9
innobase/btr/btr0cur.c
innobase/btr/btr0cur.c
+4
-3
innobase/page/page0cur.c
innobase/page/page0cur.c
+8
-6
No files found.
innobase/btr/btr0cur.c
View file @
336a27b4
...
...
@@ -392,11 +392,12 @@ btr_cur_search_to_nth_level(
page_mode
=
PAGE_CUR_LE
;
break
;
default:
ut_ad
(
mode
==
PAGE_CUR_L
#ifdef PAGE_CUR_LE_OR_EXTENDS
||
mode
==
PAGE_CUR_LE_OR_EXTENDS
ut_ad
(
mode
==
PAGE_CUR_L
||
mode
==
PAGE_CUR_LE
||
mode
==
PAGE_CUR_LE_OR_EXTENDS
);
#else
/* PAGE_CUR_LE_OR_EXTENDS */
ut_ad
(
mode
==
PAGE_CUR_L
||
mode
==
PAGE_CUR_LE
);
#endif
/* PAGE_CUR_LE_OR_EXTENDS */
||
mode
==
PAGE_CUR_LE
);
page_mode
=
mode
;
break
;
}
...
...
innobase/page/page0cur.c
View file @
336a27b4
...
...
@@ -238,14 +238,16 @@ page_cur_search_with_match(
&&
ilow_matched_fields
&&
ilow_matched_bytes
&&
cursor
);
ut_ad
(
dtuple_validate
(
tuple
));
ut_ad
(
dtuple_check_typed
(
tuple
));
#ifdef UNIV_DEBUG
# ifdef PAGE_CUR_DBG
if
(
mode
!=
PAGE_CUR_DBG
)
# endif
/* PAGE_CUR_DBG */
# ifdef PAGE_CUR_LE_OR_EXTENDS
if
(
mode
!=
PAGE_CUR_LE_OR_EXTENDS
)
# endif
/* PAGE_CUR_LE_OR_EXTENDS */
ut_ad
((
mode
==
PAGE_CUR_L
)
||
(
mode
==
PAGE_CUR_LE
)
#ifdef PAGE_CUR_DBG
||
(
mode
==
PAGE_CUR_DBG
)
#endif
/* PAGE_CUR_DBG */
#ifdef PAGE_CUR_LE_OR_EXTENDS
||
(
mode
==
PAGE_CUR_LE_OR_EXTENDS
)
#endif
/* PAGE_CUR_LE_OR_EXTENDS */
||
(
mode
==
PAGE_CUR_G
)
||
(
mode
==
PAGE_CUR_GE
));
#endif
/* UNIV_DEBUG */
page_check_dir
(
page
);
...
...
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