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
acaa20e2
Commit
acaa20e2
authored
Feb 22, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up prints in innodb_xa_prepare.
parent
8b84cb93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
innobase/trx/trx0trx.c
innobase/trx/trx0trx.c
+7
-5
No files found.
innobase/trx/trx0trx.c
View file @
acaa20e2
...
...
@@ -1853,8 +1853,9 @@ trx_recover_for_mysql(
ut_ad
(
xid_list
);
ut_ad
(
len
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
"InnoDB: Starting recovery for XA transactions...
\n
"
);
"
InnoDB: Starting recovery for XA transactions...
\n
"
);
/* We should set those transactions which are in
...
...
@@ -1876,14 +1877,14 @@ trx_recover_for_mysql(
trx
->
xid
.
bqual_length
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
"InnoDB: Transaction %lu %lu in prepared state after recovery
\n
"
,
"
InnoDB: Transaction %lu %lu in prepared state after recovery
\n
"
,
(
ulong
)
ut_dulint_get_high
(
trx
->
id
),
(
ulong
)
ut_dulint_get_low
(
trx
->
id
));
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
"InnoDB: Transaction contains changes to %lu rows
\n
"
,
"
InnoDB: Transaction contains changes to %lu rows
\n
"
,
(
ulong
)
ut_conv_dulint_to_longlong
(
trx
->
undo_no
));
count
++
;
...
...
@@ -1898,8 +1899,9 @@ trx_recover_for_mysql(
mutex_exit
(
&
kernel_mutex
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
"
InnoDB: %d transactions in prepare state after recovery
\n
"
,
"
InnoDB: %d transactions in prepare state after recovery
\n
"
,
count
);
return
(
count
);
...
...
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