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
7433ffe8
Commit
7433ffe8
authored
Jan 16, 2003
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ha_innobase.cc:
Backport from 4.0: fix possible adaprive hash index latch hang
parent
42095544
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
sql/ha_innobase.cc
sql/ha_innobase.cc
+19
-19
No files found.
sql/ha_innobase.cc
View file @
7433ffe8
...
@@ -977,14 +977,14 @@ ha_innobase::open(
...
@@ -977,14 +977,14 @@ ha_innobase::open(
norm_name
,
NULL
);
norm_name
,
NULL
);
if
(
NULL
==
ib_table
)
{
if
(
NULL
==
ib_table
)
{
sql_print_error
(
"InnoDB error:
\n
\
sql_print_error
(
"InnoDB error:
\n
"
Cannot find table %s from the internal data dictionary
\n
\
"Cannot find table %s from the internal data dictionary
\n
"
of InnoDB though the .frm file for the table exists. Maybe you
\n
\
"of InnoDB though the .frm file for the table exists. Maybe you
\n
"
have deleted and recreated InnoDB data files but have forgotten
\n
\
"have deleted and recreated InnoDB data files but have forgotten
\n
"
to delete the corresponding .frm files of InnoDB tables, or you
\n
\
"to delete the corresponding .frm files of InnoDB tables, or you
\n
"
have moved .frm files to another database?
\n
\
"have moved .frm files to another database?
\n
"
Look from section 15.1 of http://www.innodb.com/ibman.html
\n
\
"Look from section 15.1 of http://www.innodb.com/ibman.html
\n
"
how you can resolve the problem.
\n
"
,
"
how you can resolve the problem.
\n
"
,
norm_name
);
norm_name
);
free_share
(
share
);
free_share
(
share
);
...
@@ -3062,9 +3062,9 @@ ha_innobase::records_in_range(
...
@@ -3062,9 +3062,9 @@ ha_innobase::records_in_range(
DBUG_ENTER
(
"records_in_range"
);
DBUG_ENTER
(
"records_in_range"
);
/* Warning: since it is not sure that MySQL calls external_lock
update_thd
(
current_thd
);
before calling this function, the trx field in prebuilt can be
obsolete! */
trx_search_latch_release_if_reserved
(
prebuilt
->
trx
);
active_index
=
keynr
;
active_index
=
keynr
;
...
@@ -3117,12 +3117,12 @@ ha_innobase::estimate_number_of_rows(void)
...
@@ -3117,12 +3117,12 @@ ha_innobase::estimate_number_of_rows(void)
dict_index_t
*
index
;
dict_index_t
*
index
;
ulonglong
estimate
;
ulonglong
estimate
;
ulonglong
data_file_length
;
ulonglong
data_file_length
;
/* Warning: since it is not sure that MySQL calls external_lock
before calling this function, the trx field in prebuilt can be
obsolete! */
DBUG_ENTER
(
"info"
);
DBUG_ENTER
(
"estimate_number_of_rows"
);
update_thd
(
current_thd
);
trx_search_latch_release_if_reserved
(
prebuilt
->
trx
);
index
=
dict_table_get_first_index_noninline
(
prebuilt
->
table
);
index
=
dict_table_get_first_index_noninline
(
prebuilt
->
table
);
...
@@ -3178,9 +3178,9 @@ ha_innobase::info(
...
@@ -3178,9 +3178,9 @@ ha_innobase::info(
DBUG_ENTER
(
"info"
);
DBUG_ENTER
(
"info"
);
/* Warning: since it is not sure that MySQL calls external_lock
update_thd
(
current_thd
);
before calling this function, the trx field in prebuilt can be
obsolete! */
trx_search_latch_release_if_reserved
(
prebuilt
->
trx
);
ib_table
=
prebuilt
->
table
;
ib_table
=
prebuilt
->
table
;
...
...
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