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
5d60d8e5
Commit
5d60d8e5
authored
Dec 20, 2002
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
btr0sea.c:
Remove an assertion which can fail in a race of 3 threads
parent
f36fc90c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
innobase/btr/btr0sea.c
innobase/btr/btr0sea.c
+4
-3
No files found.
innobase/btr/btr0sea.c
View file @
5d60d8e5
...
@@ -453,8 +453,6 @@ btr_search_info_update_slow(
...
@@ -453,8 +453,6 @@ btr_search_info_update_slow(
}
}
if
(
build_index
)
{
if
(
build_index
)
{
ut_a
(
block
->
n_fields
+
block
->
n_bytes
>
0
);
btr_search_build_page_hash_index
(
block
->
frame
,
btr_search_build_page_hash_index
(
block
->
frame
,
block
->
n_fields
,
block
->
n_fields
,
block
->
n_bytes
,
block
->
n_bytes
,
...
@@ -1028,7 +1026,10 @@ btr_search_build_page_hash_index(
...
@@ -1028,7 +1026,10 @@ btr_search_build_page_hash_index(
return
;
return
;
}
}
ut_a
(
n_fields
+
n_bytes
>
0
);
if
(
n_fields
+
n_bytes
==
0
)
{
return
;
}
/* Calculate and cache fold values and corresponding records into
/* Calculate and cache fold values and corresponding records into
an array for fast insertion to the hash index */
an array for fast insertion to the hash index */
...
...
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