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
d95914b6
Commit
d95914b6
authored
Jan 04, 2013
by
Satya Bodapati
Browse files
Options
Browse Files
Download
Plain Diff
Merge Post Fix for BUG#14628410 from mysql-5.1 to mysql-5.5
parents
31a720ab
eab9f8f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
storage/innobase/row/row0merge.c
storage/innobase/row/row0merge.c
+8
-0
No files found.
storage/innobase/row/row0merge.c
View file @
d95914b6
...
...
@@ -2731,6 +2731,14 @@ row_merge_build_indexes(
block_size
=
3
*
sizeof
*
block
;
block
=
os_mem_alloc_large
(
&
block_size
);
/* Initialize all the merge file descriptors, so that we
don't call row_merge_file_destroy() on uninitialized
merge file descriptor */
for
(
i
=
0
;
i
<
n_indexes
;
i
++
)
{
merge_files
[
i
].
fd
=
-
1
;
}
for
(
i
=
0
;
i
<
n_indexes
;
i
++
)
{
if
(
row_merge_file_create
(
&
merge_files
[
i
])
<
0
)
...
...
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