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
d418c8be
Commit
d418c8be
authored
Jun 18, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge heikki@build.mysql.com:/home/bk/mysql-3.23
into hundin.mysql.fi:/home/heikki/mysql
parents
714bf070
c126039d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
16 deletions
+21
-16
innobase/row/row0sel.c
innobase/row/row0sel.c
+21
-2
innobase/row/row0vers.c
innobase/row/row0vers.c
+0
-14
No files found.
innobase/row/row0sel.c
View file @
d418c8be
...
...
@@ -598,7 +598,14 @@ row_sel_get_clust_rec(
clust_rec
=
btr_pcur_get_rec
(
&
(
plan
->
clust_pcur
));
ut_ad
(
page_rec_is_user_rec
(
clust_rec
));
if
(
!
page_rec_is_user_rec
(
clust_rec
)
||
btr_pcur_get_low_match
(
&
(
plan
->
clust_pcur
))
<
dict_index_get_n_unique
(
index
))
{
clust_rec
=
NULL
;
goto
func_exit
;
}
if
(
!
node
->
read_view
)
{
/* Try to place a lock on the index record */
...
...
@@ -661,6 +668,7 @@ row_sel_get_clust_rec(
row_sel_fetch_columns
(
index
,
clust_rec
,
UT_LIST_GET_FIRST
(
plan
->
columns
));
func_exit:
*
out_rec
=
clust_rec
;
return
(
DB_SUCCESS
);
...
...
@@ -2206,7 +2214,17 @@ row_sel_get_clust_rec_for_mysql(
clust_rec
=
btr_pcur_get_rec
(
prebuilt
->
clust_pcur
);
ut_ad
(
page_rec_is_user_rec
(
clust_rec
));
/* Note: only if the search ends up on a non-infimum record is the
low_match value the real match to the search tuple */
if
(
!
page_rec_is_user_rec
(
clust_rec
)
||
btr_pcur_get_low_match
(
prebuilt
->
clust_pcur
)
<
dict_index_get_n_unique
(
clust_index
))
{
clust_rec
=
NULL
;
goto
func_exit
;
}
if
(
prebuilt
->
select_lock_type
!=
LOCK_NONE
)
{
/* Try to place a lock on the index record */
...
...
@@ -2268,6 +2286,7 @@ row_sel_get_clust_rec_for_mysql(
}
}
func_exit:
*
out_rec
=
clust_rec
;
if
(
prebuilt
->
select_lock_type
==
LOCK_X
)
{
...
...
innobase/row/row0vers.c
View file @
d418c8be
...
...
@@ -76,23 +76,9 @@ row_vers_impl_x_locked_off_kernel(
clust_rec
=
row_get_clust_rec
(
BTR_SEARCH_LEAF
,
rec
,
index
,
&
clust_index
,
&
mtr
);
if
(
!
clust_rec
)
{
rec_sprintf
(
err_buf
,
900
,
rec
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: cannot find the clustered index record
\n
"
"InnoDB: for a secondary index record in table %s index %s.
\n
"
"InnoDB: Secondary index record %s.
\n
"
"InnoDB: The table is probably corrupt. Please run CHECK TABLE on it.
\n
"
"InnoDB: You can try to repair the table by dump + drop + reimport.
\n
"
"InnoDB: Send a detailed bug report to mysql@lists.mysql.com.
\n
"
,
index
->
table_name
,
index
->
name
,
err_buf
);
mutex_enter
(
&
kernel_mutex
);
mtr_commit
(
&
mtr
);
/* We assume there is no lock on the record, though this
is not certain because the table is apparently corrupt */
return
(
NULL
);
}
...
...
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