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
4d446d4c
Commit
4d446d4c
authored
Jun 17, 2010
by
Jimmy Yang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check in fix for Bug #52814 InnoDB: Use the new ha_data interfaces
rb://290
, approved by Sunny
parent
69bc6dd0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+9
-3
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
4d446d4c
...
@@ -583,13 +583,13 @@ thd_is_select(
...
@@ -583,13 +583,13 @@ thd_is_select(
/************************************************************************
/************************************************************************
Obtain the InnoDB transaction of a MySQL thread. */
Obtain the InnoDB transaction of a MySQL thread. */
inline
inline
trx_t
*
&
trx_t
*
thd_to_trx
(
thd_to_trx
(
/*=======*/
/*=======*/
/* out: reference to transaction pointer */
/* out: reference to transaction pointer */
THD
*
thd
)
/* in: MySQL thread */
THD
*
thd
)
/* in: MySQL thread */
{
{
return
(
*
(
trx_t
**
)
thd
_ha_data
(
thd
,
innodb_hton_ptr
));
return
(
(
trx_t
*
)
thd_get
_ha_data
(
thd
,
innodb_hton_ptr
));
}
}
/************************************************************************
/************************************************************************
...
@@ -1164,7 +1164,7 @@ check_trx_exists(
...
@@ -1164,7 +1164,7 @@ check_trx_exists(
/* out: InnoDB transaction handle */
/* out: InnoDB transaction handle */
THD
*
thd
)
/* in: user thread handle */
THD
*
thd
)
/* in: user thread handle */
{
{
trx_t
*
&
trx
=
thd_to_trx
(
thd
);
trx_t
*
trx
=
thd_to_trx
(
thd
);
ut_ad
(
thd
==
current_thd
);
ut_ad
(
thd
==
current_thd
);
...
@@ -1178,6 +1178,9 @@ check_trx_exists(
...
@@ -1178,6 +1178,9 @@ check_trx_exists(
/* Update the info whether we should skip XA steps that eat
/* Update the info whether we should skip XA steps that eat
CPU time */
CPU time */
trx
->
support_xa
=
THDVAR
(
thd
,
support_xa
);
trx
->
support_xa
=
THDVAR
(
thd
,
support_xa
);
/* We have a new trx, register with the thread handle */
thd_set_ha_data
(
thd
,
innodb_hton_ptr
,
trx
);
}
else
{
}
else
{
if
(
trx
->
magic_n
!=
TRX_MAGIC_N
)
{
if
(
trx
->
magic_n
!=
TRX_MAGIC_N
)
{
mem_analyze_corruption
(
trx
);
mem_analyze_corruption
(
trx
);
...
@@ -2482,6 +2485,9 @@ innobase_close_connection(
...
@@ -2482,6 +2485,9 @@ innobase_close_connection(
innobase_rollback_trx
(
trx
);
innobase_rollback_trx
(
trx
);
/* Release the lock in thread handler */
thd_set_ha_data
(
thd
,
hton
,
NULL
);
thr_local_free
(
trx
->
mysql_thread_id
);
thr_local_free
(
trx
->
mysql_thread_id
);
trx_free_for_mysql
(
trx
);
trx_free_for_mysql
(
trx
);
...
...
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