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
66d2d13a
Commit
66d2d13a
authored
Mar 03, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug#8740: Server crash at start on Solaris 9 (64 bit)
parent
43668c53
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
sql/log.cc
sql/log.cc
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/sql_class.h
sql/sql_class.h
+1
-1
No files found.
sql/log.cc
View file @
66d2d13a
...
...
@@ -2457,7 +2457,7 @@ void sql_print_information(const char *format, ...)
static
const
char
tc_log_magic
[]
=
{(
char
)
254
,
0x23
,
0x05
,
0x74
};
u
int
opt_tc_log_size
=
TC_LOG_MIN_SIZE
;
u
long
opt_tc_log_size
=
TC_LOG_MIN_SIZE
;
ulong
tc_log_max_pages_used
=
0
,
tc_log_page_size
=
0
,
tc_log_page_waits
=
0
,
tc_log_cur_pages_used
=
0
;
...
...
sql/mysqld.cc
View file @
66d2d13a
...
...
@@ -4566,7 +4566,7 @@ Disable with --skip-isam.",
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"log-tc-size"
,
OPT_LOG_TC_SIZE
,
"Size of transaction coordinator log."
,
(
gptr
*
)
&
opt_tc_log_size
,
(
gptr
*
)
&
opt_tc_log_size
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
TC_LOG_MIN_SIZE
,
TC_LOG_MIN_SIZE
,
~
0
,
0
,
TC_LOG_PAGE_SIZE
,
0
},
REQUIRED_ARG
,
TC_LOG_MIN_SIZE
,
TC_LOG_MIN_SIZE
,
~
0
L
,
0
,
TC_LOG_PAGE_SIZE
,
0
},
{
"log-update"
,
OPT_UPDATE_LOG
,
"The update log is deprecated since version 5.0, is replaced by the binary \
log and this option justs turns on --log-bin instead."
,
...
...
sql/sql_class.h
View file @
66d2d13a
...
...
@@ -45,7 +45,7 @@ extern const char **errmesg;
#define TC_LOG_PAGE_SIZE 8192
#define TC_LOG_MIN_SIZE (3*TC_LOG_PAGE_SIZE)
extern
u
int
opt_tc_log_size
;
extern
u
long
opt_tc_log_size
;
extern
ulong
tc_log_max_pages_used
;
extern
ulong
tc_log_page_size
;
extern
ulong
tc_log_page_waits
;
...
...
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