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
406f018d
Commit
406f018d
authored
Jun 05, 2009
by
Tatiana A. Nurnberg
Browse files
Options
Browse Files
Download
Plain Diff
auto-merge
parents
5fb8b93e
e34085fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
sql/sql_insert.cc
sql/sql_insert.cc
+3
-0
sql/sql_select.cc
sql/sql_select.cc
+7
-0
storage/myisam/ha_myisam.cc
storage/myisam/ha_myisam.cc
+3
-0
No files found.
sql/sql_insert.cc
View file @
406f018d
...
...
@@ -3111,6 +3111,9 @@ bool select_insert::send_data(List<Item> &values)
}
}
// Release latches in case bulk insert takes a long time
ha_release_temporary_latches
(
thd
);
error
=
write_record
(
thd
,
table
,
&
info
);
table
->
auto_increment_field_not_null
=
FALSE
;
...
...
sql/sql_select.cc
View file @
406f018d
...
...
@@ -10602,6 +10602,9 @@ free_tmp_table(THD *thd, TABLE *entry)
save_proc_info
=
thd
->
proc_info
;
thd_proc_info
(
thd
,
"removing tmp table"
);
// Release latches since this can take a long time
ha_release_temporary_latches
(
thd
);
if
(
entry
->
file
)
{
if
(
entry
->
db_stat
)
...
...
@@ -10647,6 +10650,10 @@ bool create_myisam_from_heap(THD *thd, TABLE *table, TMP_TABLE_PARAM *param,
table
->
file
->
print_error
(
error
,
MYF
(
0
));
DBUG_RETURN
(
1
);
}
// Release latches since this can take a long time
ha_release_temporary_latches
(
thd
);
new_table
=
*
table
;
share
=
*
table
->
s
;
new_table
.
s
=
&
share
;
...
...
storage/myisam/ha_myisam.cc
View file @
406f018d
...
...
@@ -1112,6 +1112,9 @@ int ha_myisam::repair(THD *thd, MI_CHECK ¶m, bool do_optimize)
param
.
out_flag
=
0
;
strmov
(
fixed_name
,
file
->
filename
);
// Release latches since this can take a long time
ha_release_temporary_latches
(
thd
);
// Don't lock tables if we have used LOCK TABLE
if
(
!
thd
->
locked_tables
&&
mi_lock_database
(
file
,
table
->
s
->
tmp_table
?
F_EXTRA_LCK
:
F_WRLCK
))
...
...
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