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
59b1a1f6
Commit
59b1a1f6
authored
Apr 04, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-9472b
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
1f1c4477
9e16f121
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
10 deletions
+3
-10
sql/mysqld.cc
sql/mysqld.cc
+3
-10
No files found.
sql/mysqld.cc
View file @
59b1a1f6
...
...
@@ -5916,16 +5916,6 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
sf_malloc_mem_limit
=
atoi
(
argument
);
#endif
break
;
#ifdef EMBEDDED_LIBRARY
case
OPT_MAX_ALLOWED_PACKET
:
max_allowed_packet
=
atoi
(
argument
);
global_system_variables
.
max_allowed_packet
=
max_allowed_packet
;
break
;
case
OPT_NET_BUFFER_LENGTH
:
net_buffer_length
=
atoi
(
argument
);
global_system_variables
.
net_buffer_length
=
net_buffer_length
;
break
;
#endif
#include <sslopt-case.h>
case
'V'
:
print_version
();
...
...
@@ -6477,6 +6467,9 @@ static void get_options(int argc,char **argv)
#ifndef EMBEDDED_LIBRARY
if
(
mysqld_chroot
)
set_root
(
mysqld_chroot
);
#else
max_allowed_packet
=
global_system_variables
.
max_allowed_packet
;
net_buffer_length
=
global_system_variables
.
net_buffer_length
;
#endif
fix_paths
();
...
...
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