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
7c58ed48
Commit
7c58ed48
authored
Oct 02, 2007
by
kaa@polly.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge polly.(none):/home/kaa/src/maint/bug5731/my50-bug5731
into polly.(none):/home/kaa/src/maint/bug5731/my51-bug5731
parents
0c199938
d8d3698b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
include/my_global.h
include/my_global.h
+0
-3
sql/mysqld.cc
sql/mysqld.cc
+3
-3
No files found.
include/my_global.h
View file @
7c58ed48
...
...
@@ -860,9 +860,6 @@ typedef SOCKET_SIZE_TYPE size_socket;
#define DBL_MAX 1.79769313486231470e+308
#define FLT_MAX ((float)3.40282346638528860e+38)
#endif
#ifndef SSIZE_MAX
#define SSIZE_MAX ((~((size_t) 0)) / 2)
#endif
#ifndef SIZE_T_MAX
#define SIZE_T_MAX ~((size_t) 0)
#endif
...
...
sql/mysqld.cc
View file @
7c58ed48
...
...
@@ -6244,7 +6244,7 @@ The minimum value for this variable is 4096.",
"Each thread that does a sequential scan allocates a buffer of this size for each table it scans. If you do many sequential scans, you may want to increase this value."
,
(
uchar
**
)
&
global_system_variables
.
read_buff_size
,
(
uchar
**
)
&
max_system_variables
.
read_buff_size
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
128
*
1024L
,
IO_SIZE
*
2
+
MALLOC_OVERHEAD
,
SSIZE_MAX
,
MALLOC_OVERHEAD
,
IO_SIZE
,
128
*
1024L
,
IO_SIZE
*
2
+
MALLOC_OVERHEAD
,
INT_MAX32
,
MALLOC_OVERHEAD
,
IO_SIZE
,
0
},
{
"read_only"
,
OPT_READONLY
,
"Make all non-temporary tables read-only, with the exception for replication (slave) threads and users with the SUPER privilege"
,
...
...
@@ -6256,12 +6256,12 @@ The minimum value for this variable is 4096.",
(
uchar
**
)
&
global_system_variables
.
read_rnd_buff_size
,
(
uchar
**
)
&
max_system_variables
.
read_rnd_buff_size
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
256
*
1024L
,
IO_SIZE
*
2
+
MALLOC_OVERHEAD
,
SSIZE_MAX
,
MALLOC_OVERHEAD
,
IO_SIZE
,
0
},
INT_MAX32
,
MALLOC_OVERHEAD
,
IO_SIZE
,
0
},
{
"record_buffer"
,
OPT_RECORD_BUFFER
,
"Alias for read_buffer_size"
,
(
uchar
**
)
&
global_system_variables
.
read_buff_size
,
(
uchar
**
)
&
max_system_variables
.
read_buff_size
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
128
*
1024L
,
IO_SIZE
*
2
+
MALLOC_OVERHEAD
,
SSIZE_MAX
,
MALLOC_OVERHEAD
,
IO_SIZE
,
0
},
128
*
1024L
,
IO_SIZE
*
2
+
MALLOC_OVERHEAD
,
INT_MAX32
,
MALLOC_OVERHEAD
,
IO_SIZE
,
0
},
#ifdef HAVE_REPLICATION
{
"relay_log_purge"
,
OPT_RELAY_LOG_PURGE
,
"0 = do not purge relay logs. 1 = purge them as soon as they are no more needed."
,
...
...
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