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
2aa44dd9
Commit
2aa44dd9
authored
Mar 21, 2005
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge hundin.mysql.fi:/home/heikki/mysql-4.1
into hundin.mysql.fi:/home/heikki/mysql-5.0
parents
50a823df
8a906d79
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
include/config-netware.h
include/config-netware.h
+3
-0
innobase/include/trx0trx.h
innobase/include/trx0trx.h
+6
-0
innobase/trx/trx0trx.c
innobase/trx/trx0trx.c
+9
-1
No files found.
include/config-netware.h
View file @
2aa44dd9
...
...
@@ -80,6 +80,9 @@ extern "C" {
/* On NetWare, stack grows towards lower address*/
#define STACK_DIRECTION -1
/* On NetWare, to fix the problem with the deletion of open files */
#define CANT_DELETE_OPEN_FILES 1
/* default directory information */
#define DEFAULT_MYSQL_HOME "sys:/mysql"
#define PACKAGE "mysql"
...
...
innobase/include/trx0trx.h
View file @
2aa44dd9
...
...
@@ -381,6 +381,12 @@ struct trx_struct{
in MySQL's binlog write, we will
flush the log to disk later in
a separate call */
ibool
must_flush_log_later
;
/* this flag is set to TRUE in
trx_commit_off_kernel() if
flush_log_later was TRUE, and there
were modifications by the transaction;
in that case we must flush the log
in trx_commit_complete_for_mysql() */
dulint
commit_lsn
;
/* lsn at the time of the commit */
ibool
dict_operation
;
/* TRUE if the trx is used to create
a table, create an index, or drop a
...
...
innobase/trx/trx0trx.c
View file @
2aa44dd9
...
...
@@ -99,6 +99,7 @@ trx_create(
trx
->
check_unique_secondary
=
TRUE
;
trx
->
flush_log_later
=
FALSE
;
trx
->
must_flush_log_later
=
FALSE
;
trx
->
dict_operation
=
FALSE
;
...
...
@@ -710,6 +711,8 @@ trx_commit_off_kernel(
ut_ad
(
mutex_own
(
&
kernel_mutex
));
#endif
/* UNIV_SYNC_DEBUG */
trx
->
must_flush_log_later
=
FALSE
;
rseg
=
trx
->
rseg
;
if
(
trx
->
insert_undo
!=
NULL
||
trx
->
update_undo
!=
NULL
)
{
...
...
@@ -875,6 +878,7 @@ trx_commit_off_kernel(
if
(
trx
->
flush_log_later
)
{
/* Do nothing yet */
trx
->
must_flush_log_later
=
TRUE
;
}
else
if
(
srv_flush_log_at_trx_commit
==
0
)
{
/* Do nothing */
}
else
if
(
srv_flush_log_at_trx_commit
==
1
)
{
...
...
@@ -1594,7 +1598,9 @@ trx_commit_complete_for_mysql(
trx
->
op_info
=
"flushing log"
;
if
(
srv_flush_log_at_trx_commit
==
0
)
{
if
(
!
trx
->
must_flush_log_later
)
{
/* Do nothing */
}
else
if
(
srv_flush_log_at_trx_commit
==
0
)
{
/* Do nothing */
}
else
if
(
srv_flush_log_at_trx_commit
==
1
)
{
if
(
srv_unix_file_flush_method
==
SRV_UNIX_NOSYNC
)
{
...
...
@@ -1615,6 +1621,8 @@ trx_commit_complete_for_mysql(
}
else
{
ut_error
;
}
trx
->
must_flush_log_later
=
FALSE
;
trx
->
op_info
=
""
;
...
...
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