Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
mariadb
Commits
0666756c
Commit
0666756c
authored
14 years ago
by
Vasil Dimov
Browse files
Options
Download
Plain Diff
Merge mysql-trunk-innodb from bk-internal into my local branch
parents
2e7f0a7c
a2ee2f56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
storage/innobase/row/row0merge.c
storage/innobase/row/row0merge.c
+4
-1
No files found.
storage/innobase/row/row0merge.c
View file @
0666756c
...
...
@@ -2120,9 +2120,12 @@ row_merge_drop_temp_indexes(void)
if
(
table
)
{
dict_index_t
*
index
;
dict_index_t
*
next_index
;
for
(
index
=
dict_table_get_first_index
(
table
);
index
;
index
=
dict_table_get_next_index
(
index
))
{
index
;
index
=
next_index
)
{
next_index
=
dict_table_get_next_index
(
index
);
if
(
*
index
->
name
==
TEMP_INDEX_PREFIX
)
{
row_merge_drop_index
(
index
,
table
,
trx
);
...
...
This diff is collapsed.
Click to expand it.
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