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
82e57a3e
Commit
82e57a3e
authored
Jun 07, 2001
by
heikki@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trx0roll.c Changed Innobase to Innodb in some fprintfs
trx0sys.c Changed Innobase to Innodb in some fprintfs
parent
ca2dedab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
innobase/trx/trx0roll.c
innobase/trx/trx0roll.c
+5
-5
innobase/trx/trx0sys.c
innobase/trx/trx0sys.c
+1
-1
No files found.
innobase/trx/trx0roll.c
View file @
82e57a3e
...
...
@@ -176,7 +176,7 @@ trx_rollback_all_without_sess(void)
if
(
UT_LIST_GET_FIRST
(
trx_sys
->
trx_list
))
{
fprintf
(
stderr
,
"Inno
base
: Starting rollback of uncommitted transactions
\n
"
);
"Inno
DB
: Starting rollback of uncommitted transactions
\n
"
);
}
else
{
return
;
}
...
...
@@ -196,7 +196,7 @@ loop:
if
(
trx
==
NULL
)
{
fprintf
(
stderr
,
"Inno
base
: Rollback of uncommitted transactions completed
\n
"
);
"Inno
DB
: Rollback of uncommitted transactions completed
\n
"
);
mem_heap_free
(
heap
);
...
...
@@ -221,7 +221,7 @@ loop:
ut_a
(
thr
==
que_fork_start_command
(
fork
,
SESS_COMM_EXECUTE
,
0
));
fprintf
(
stderr
,
"Inno
base
: Rolling back trx no %lu
\n
"
,
fprintf
(
stderr
,
"Inno
DB
: Rolling back trx no %lu
\n
"
,
ut_dulint_get_low
(
trx
->
id
));
mutex_exit
(
&
kernel_mutex
);
...
...
@@ -238,7 +238,7 @@ loop:
mutex_exit
(
&
kernel_mutex
);
fprintf
(
stderr
,
"Inno
base
: Waiting rollback of trx no %lu to end
\n
"
,
"Inno
DB
: Waiting rollback of trx no %lu to end
\n
"
,
ut_dulint_get_low
(
trx
->
id
));
os_thread_sleep
(
100000
);
...
...
@@ -264,7 +264,7 @@ loop:
mutex_exit
(
&
(
dict_sys
->
mutex
));
}
fprintf
(
stderr
,
"Inno
base
: Rolling back of trx no %lu completed
\n
"
,
fprintf
(
stderr
,
"Inno
DB
: Rolling back of trx no %lu completed
\n
"
,
ut_dulint_get_low
(
trx
->
id
));
mem_heap_free
(
heap
);
...
...
innobase/trx/trx0sys.c
View file @
82e57a3e
...
...
@@ -198,7 +198,7 @@ trx_sys_init_at_db_start(void)
if
(
UT_LIST_GET_LEN
(
trx_sys
->
trx_list
)
>
0
)
{
fprintf
(
stderr
,
"Inno
base
: %lu uncommitted transaction(s) which must be rolled back
\n
"
,
"Inno
DB
: %lu uncommitted transaction(s) which must be rolled back
\n
"
,
UT_LIST_GET_LEN
(
trx_sys
->
trx_list
));
}
...
...
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