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
a0263e86
Commit
a0263e86
authored
Jan 21, 2005
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log0recv.c:
Remove superfluous fprintf about log record application in InnoDB startup
parent
3df04944
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
innobase/log/log0recv.c
innobase/log/log0recv.c
+3
-5
No files found.
innobase/log/log0recv.c
View file @
a0263e86
...
...
@@ -2897,11 +2897,6 @@ recv_recovery_from_checkpoint_finish(void)
int
i
;
os_thread_id_t
recovery_thread_id
;
/* Rollback the uncommitted transactions which have no user session */
fprintf
(
stderr
,
"InnoDB: Starting to apply log records to the database...
\n
"
);
/* Apply the hashed log records to the respective file pages */
if
(
srv_force_recovery
<
SRV_FORCE_NO_LOG_REDO
)
{
...
...
@@ -2938,6 +2933,9 @@ recv_recovery_from_checkpoint_finish(void)
recv_sys_free
();
#endif
if
(
srv_force_recovery
<
SRV_FORCE_NO_TRX_UNDO
)
{
/* Rollback the uncommitted transactions which have no user
session */
os_thread_create
(
trx_rollback_or_clean_all_without_sess
,
(
void
*
)
&
i
,
&
recovery_thread_id
);
}
...
...
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