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
71811298
Commit
71811298
authored
Apr 05, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql/item.cc
after merge fix sql/mysqld.cc too early for sync-binlog=1 by default :)
parent
c796ea59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/item.cc
sql/item.cc
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
sql/item.cc
View file @
71811298
...
...
@@ -1496,7 +1496,7 @@ longlong Item_string::val_int()
char
*
org_end
=
end
;
CHARSET_INFO
*
cs
=
str_value
.
charset
();
tmp
=
(
*
(
cs
->
cset
->
my_
strtoll10
))(
cs
,
str_value
.
ptr
(),
&
end
,
&
err
);
tmp
=
(
*
(
cs
->
cset
->
strtoll10
))(
cs
,
str_value
.
ptr
(),
&
end
,
&
err
);
/*
TODO: Give error if we wanted a signed integer and we got an unsigned
one
...
...
sql/mysqld.cc
View file @
71811298
...
...
@@ -5467,7 +5467,7 @@ The minimum value for this variable is 4096.",
"Synchronously flush binary log to disk after every #th event. "
"Use 0 (default) to disable synchronous flushing."
,
(
gptr
*
)
&
sync_binlog_period
,
(
gptr
*
)
&
sync_binlog_period
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
1
,
0
,
~
0L
,
0
,
1
,
0
},
REQUIRED_ARG
,
0
,
0
,
~
0L
,
0
,
1
,
0
},
{
"sync-frm"
,
OPT_SYNC_FRM
,
"Sync .frm to disk on create. Enabled by default."
,
(
gptr
*
)
&
opt_sync_frm
,
(
gptr
*
)
&
opt_sync_frm
,
0
,
GET_BOOL
,
NO_ARG
,
1
,
0
,
0
,
0
,
0
,
0
},
...
...
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