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
cf1125a9
Commit
cf1125a9
authored
Aug 28, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge paul@work.mysql.com:/home/bk/mysql-4.0
into teton.kitebird.com:/home/paul/mysql-4.0
parents
78edd01b
f4a24ad2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
7 deletions
+9
-7
configure.in
configure.in
+1
-1
include/config-win.h
include/config-win.h
+1
-0
include/my_global.h
include/my_global.h
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/set_var.cc
sql/set_var.cc
+4
-3
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
configure.in
View file @
cf1125a9
...
...
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT
(
sql/mysqld.cc
)
AC_CANONICAL_SYSTEM
# The Docs Makefile.am parses this line!
AM_INIT_AUTOMAKE
(
mysql, 4.0.
3
-beta
)
AM_INIT_AUTOMAKE
(
mysql, 4.0.
4
-beta
)
AM_CONFIG_HEADER
(
config.h
)
PROTOCOL_VERSION
=
10
...
...
include/config-win.h
View file @
cf1125a9
...
...
@@ -259,6 +259,7 @@ inline double ulonglong2double(ulonglong value)
#define HAVE_ISNAN
#define HAVE_FINITE
#define HAVE_ISAM
/* We want to have support for ISAM in 4.0 */
#define SPRINTF_RETURNS_INT
#ifdef NOT_USED
#define HAVE_SNPRINTF
/* Gave link error */
...
...
include/my_global.h
View file @
cf1125a9
...
...
@@ -1016,7 +1016,7 @@ typedef union {
#ifdef SPRINTF_RETURNS_PTR
#define my_sprintf(buff,args) ((int)(sprintf args - buff))
#else
#define my_sprintf(buff,args)
sprintf args,strlen(buff
)
#define my_sprintf(buff,args)
((ulong) sprintf args, (ulong) strlen(buff)
)
#endif
#endif
...
...
sql/mysqld.cc
View file @
cf1125a9
...
...
@@ -3339,7 +3339,7 @@ struct my_option my_long_options[] =
#ifdef USE_SYMDIR
{
"use-symbolic-links"
,
's'
,
"Enable symbolic link support"
,
(
gptr
*
)
&
my_use_symdir
,
(
gptr
*
)
&
my_use_symdir
,
0
,
GET_BOOL
,
NO_ARG
,
USE
_PURIFY
(
0
,
1
),
0
,
0
,
0
,
0
,
0
},
IF
_PURIFY
(
0
,
1
),
0
,
0
,
0
,
0
,
0
},
#endif
{
"user"
,
'u'
,
"Run mysqld daemon as user"
,
(
gptr
*
)
&
mysqld_user
,
(
gptr
*
)
&
mysqld_user
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
...
...
sql/set_var.cc
View file @
cf1125a9
...
...
@@ -454,7 +454,7 @@ struct show_var_st init_vars[]= {
{
"log"
,
(
char
*
)
&
opt_log
,
SHOW_BOOL
},
{
"log_update"
,
(
char
*
)
&
opt_update_log
,
SHOW_BOOL
},
{
"log_bin"
,
(
char
*
)
&
opt_bin_log
,
SHOW_BOOL
},
{
"log_slave_updates"
,
(
char
*
)
&
opt_log_slave_updates
,
SHOW_BOOL
},
{
"log_slave_updates"
,
(
char
*
)
&
opt_log_slave_updates
,
SHOW_
MY_
BOOL
},
{
"log_slow_queries"
,
(
char
*
)
&
opt_slow_log
,
SHOW_BOOL
},
{
sys_log_warnings
.
name
,
(
char
*
)
&
sys_log_warnings
,
SHOW_SYS
},
{
sys_long_query_time
.
name
,
(
char
*
)
&
sys_long_query_time
,
SHOW_SYS
},
...
...
@@ -481,7 +481,7 @@ struct show_var_st init_vars[]= {
{
"myisam_recover_options"
,
(
char
*
)
&
myisam_recover_options_str
,
SHOW_CHAR_PTR
},
{
sys_myisam_sort_buffer_size
.
name
,
(
char
*
)
&
sys_myisam_sort_buffer_size
,
SHOW_SYS
},
#ifdef __NT__
{
"named_pipe"
,
(
char
*
)
&
opt_enable_named_pipe
,
SHOW_BOOL
},
{
"named_pipe"
,
(
char
*
)
&
opt_enable_named_pipe
,
SHOW_
MY_
BOOL
},
#endif
{
sys_net_buffer_length
.
name
,(
char
*
)
&
sys_net_buffer_length
,
SHOW_SYS
},
{
sys_net_read_timeout
.
name
,
(
char
*
)
&
sys_net_read_timeout
,
SHOW_SYS
},
...
...
@@ -1208,7 +1208,8 @@ void set_var_free()
sys_var
*
find_sys_var
(
const
char
*
str
,
uint
length
)
{
sys_var
*
var
=
(
sys_var
*
)
hash_search
(
&
system_variable_hash
,
str
,
sys_var
*
var
=
(
sys_var
*
)
hash_search
(
&
system_variable_hash
,
(
byte
*
)
str
,
length
?
length
:
strlen
(
str
));
if
(
!
var
)
...
...
sql/sql_yacc.yy
View file @
cf1125a9
...
...
@@ -3287,7 +3287,7 @@ option_value:
LEX *lex=Lex;
lex->var_list.push_back(new set_var(lex->option_type,
find_sys_var("tx_isolation"),
new Item_int((int) $4)));
new Item_int((int
32
) $4)));
}
| CHAR_SYM SET opt_equal set_expr_or_default
{
...
...
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