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
bc8bdd5b
Commit
bc8bdd5b
authored
Feb 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/home/mysqldev/tulin/mysql-5.0
parents
be453b99
20ad25de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
sql/handler.cc
sql/handler.cc
+5
-1
sql/handler.h
sql/handler.h
+1
-1
sql/log.cc
sql/log.cc
+4
-3
No files found.
sql/handler.cc
View file @
bc8bdd5b
...
@@ -476,6 +476,9 @@ void ha_close_connection(THD* thd)
...
@@ -476,6 +476,9 @@ void ha_close_connection(THD* thd)
void
trans_register_ha
(
THD
*
thd
,
bool
all
,
handlerton
*
ht_arg
)
void
trans_register_ha
(
THD
*
thd
,
bool
all
,
handlerton
*
ht_arg
)
{
{
THD_TRANS
*
trans
;
THD_TRANS
*
trans
;
DBUG_ENTER
(
"trans_register_ha"
);
DBUG_PRINT
(
"enter"
,(
"%s"
,
all
?
"all"
:
"stmt"
));
if
(
all
)
if
(
all
)
{
{
trans
=
&
thd
->
transaction
.
all
;
trans
=
&
thd
->
transaction
.
all
;
...
@@ -496,6 +499,7 @@ void trans_register_ha(THD *thd, bool all, handlerton *ht_arg)
...
@@ -496,6 +499,7 @@ void trans_register_ha(THD *thd, bool all, handlerton *ht_arg)
trans
->
no_2pc
|=
(
ht_arg
->
prepare
==
0
);
trans
->
no_2pc
|=
(
ht_arg
->
prepare
==
0
);
if
(
thd
->
transaction
.
xid
.
is_null
())
if
(
thd
->
transaction
.
xid
.
is_null
())
thd
->
transaction
.
xid
.
set
(
thd
->
query_id
);
thd
->
transaction
.
xid
.
set
(
thd
->
query_id
);
DBUG_VOID_RETURN
;
}
}
/*
/*
...
@@ -514,7 +518,7 @@ int ha_prepare(THD *thd)
...
@@ -514,7 +518,7 @@ int ha_prepare(THD *thd)
if
(
trans
->
nht
)
if
(
trans
->
nht
)
{
{
if
(
trans
->
no_2pc
)
if
(
trans
->
no_2pc
)
return
-
1
;
DBUG_RETURN
(
-
1
)
;
for
(;
*
ht
;
ht
++
)
for
(;
*
ht
;
ht
++
)
{
{
int
err
;
int
err
;
...
...
sql/handler.h
View file @
bc8bdd5b
...
@@ -97,7 +97,7 @@
...
@@ -97,7 +97,7 @@
Note: the following includes binlog and closing 0.
Note: the following includes binlog and closing 0.
so: innodb+bdb+ndb+binlog+0
so: innodb+bdb+ndb+binlog+0
*/
*/
#define MAX_HA
5
#define MAX_HA
6
/*
/*
Bits in index_ddl_flags(KEY *wanted_index)
Bits in index_ddl_flags(KEY *wanted_index)
...
...
sql/log.cc
View file @
bc8bdd5b
...
@@ -129,11 +129,12 @@ static int binlog_rollback(THD *thd, bool all)
...
@@ -129,11 +129,12 @@ static int binlog_rollback(THD *thd, bool all)
IO_CACHE
*
trans_log
=
(
IO_CACHE
*
)
thd
->
ha_data
[
binlog_hton
.
slot
];
IO_CACHE
*
trans_log
=
(
IO_CACHE
*
)
thd
->
ha_data
[
binlog_hton
.
slot
];
DBUG_ENTER
(
"binlog_rollback"
);
DBUG_ENTER
(
"binlog_rollback"
);
/*
/*
first two conditions here are guaranteed - see trans_register_ha()
First assert is guaranteed - see trans_register_ha() call below.
call below. The third one
must be true. If it is not, we're registering
The second
must be true. If it is not, we're registering
unnecessary, doing extra work. The cause should be found and eliminated
unnecessary, doing extra work. The cause should be found and eliminated
*/
*/
DBUG_ASSERT
(
all
&&
mysql_bin_log
.
is_open
()
&&
my_b_tell
(
trans_log
));
DBUG_ASSERT
(
all
||
!
(
thd
->
options
&
(
OPTION_NOT_AUTOCOMMIT
|
OPTION_BEGIN
)));
DBUG_ASSERT
(
mysql_bin_log
.
is_open
()
&&
my_b_tell
(
trans_log
));
/*
/*
Update the binary log with a BEGIN/ROLLBACK block if we have
Update the binary log with a BEGIN/ROLLBACK block if we have
cached some queries and we updated some non-transactional
cached some queries and we updated some non-transactional
...
...
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