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
7a23b1ba
Commit
7a23b1ba
authored
Sep 28, 2006
by
jimw@rama.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge rama.(none):/home/jimw/my/mysql-5.0-clean
into rama.(none):/home/jimw/my/mysql-5.1-clean
parents
c8801bce
d5d89bcf
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
60 additions
and
33 deletions
+60
-33
include/m_ctype.h
include/m_ctype.h
+3
-2
include/m_string.h
include/m_string.h
+2
-1
include/my_global.h
include/my_global.h
+21
-1
include/my_sys.h
include/my_sys.h
+2
-2
sql/item_timefunc.cc
sql/item_timefunc.cc
+2
-2
sql/mysql_priv.h
sql/mysql_priv.h
+6
-4
sql/mysqld.cc
sql/mysqld.cc
+9
-8
sql/opt_range.cc
sql/opt_range.cc
+4
-3
sql/set_var.cc
sql/set_var.cc
+8
-8
sql/slave.cc
sql/slave.cc
+1
-1
sql/slave.h
sql/slave.h
+2
-1
No files found.
include/m_ctype.h
View file @
7a23b1ba
...
...
@@ -196,7 +196,7 @@ typedef struct my_charset_handler_st
/* Charset dependant snprintf() */
int
(
*
snprintf
)(
struct
charset_info_st
*
,
char
*
to
,
uint
n
,
const
char
*
fmt
,
...);
...)
ATTRIBUTE_FORMAT
(
printf
,
4
,
5
)
;
int
(
*
long10_to_str
)(
struct
charset_info_st
*
,
char
*
to
,
uint
n
,
int
radix
,
long
int
val
);
int
(
*
longlong10_to_str
)(
struct
charset_info_st
*
,
char
*
to
,
uint
n
,
...
...
@@ -335,7 +335,8 @@ int my_mb_ctype_mb(CHARSET_INFO *,int *, const uchar *,const uchar *);
ulong
my_scan_8bit
(
CHARSET_INFO
*
cs
,
const
char
*
b
,
const
char
*
e
,
int
sq
);
int
my_snprintf_8bit
(
struct
charset_info_st
*
,
char
*
to
,
uint
n
,
const
char
*
fmt
,
...);
const
char
*
fmt
,
...)
ATTRIBUTE_FORMAT
(
printf
,
4
,
5
);
long
my_strntol_8bit
(
CHARSET_INFO
*
,
const
char
*
s
,
uint
l
,
int
base
,
char
**
e
,
int
*
err
);
...
...
include/m_string.h
View file @
7a23b1ba
...
...
@@ -235,7 +235,8 @@ extern ulonglong strtoull(const char *str, char **ptr, int base);
extern
int
my_vsnprintf
(
char
*
str
,
size_t
n
,
const
char
*
format
,
va_list
ap
);
extern
int
my_snprintf
(
char
*
to
,
size_t
n
,
const
char
*
fmt
,
...);
extern
int
my_snprintf
(
char
*
to
,
size_t
n
,
const
char
*
fmt
,
...)
ATTRIBUTE_FORMAT
(
printf
,
3
,
4
);
#if defined(__cplusplus)
}
...
...
include/my_global.h
View file @
7a23b1ba
...
...
@@ -546,14 +546,34 @@ typedef unsigned short ushort;
#define function_volatile volatile
#define my_reinterpret_cast(A) reinterpret_cast<A>
#define my_const_cast(A) const_cast<A>
# ifndef GCC_VERSION
# define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
# endif
#elif !defined(my_reinterpret_cast)
#define my_reinterpret_cast(A) (A)
#define my_const_cast(A) (A)
#endif
#if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__) || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
/*
Disable __attribute__() on GCC < 2.7 and non-GCC compilers
*/
#if !defined(__attribute__) && (!defined(__GNUC__) || GCC_VERSION < 2007)
#define __attribute__(A)
#endif
/*
__attribute__((format(...))) is only supported in gcc >= 2.8 and g++ >= 3.4
*/
#ifndef ATTRIBUTE_FORMAT
# if defined(__GNUC__) && \
((!defined(__cplusplus__) && GCC_VERSION >= 2008) || \
GCC_VERSION >= 3004)
# define ATTRIBUTE_FORMAT(style, m, n) __attribute__((format(style, m, n)))
# else
# define ATTRIBUTE_FORMAT(style, m, n)
# endif
#endif
/*
Wen using the embedded library, users might run into link problems,
duplicate declaration of __cxa_pure_virtual, solved by declaring it a
...
...
include/my_sys.h
View file @
7a23b1ba
...
...
@@ -623,8 +623,8 @@ extern int my_chsize(File fd,my_off_t newlength, int filler, myf MyFlags);
extern
int
my_sync
(
File
fd
,
myf
my_flags
);
extern
int
my_error
_VARARGS
((
int
nr
,
myf
MyFlags
,
...));
extern
int
my_printf_error
_VARARGS
((
uint
my_err
,
const
char
*
format
,
myf
MyFlags
,
...)
__attribute__
((
format
(
printf
,
2
,
4
)))
);
myf
MyFlags
,
...)
)
ATTRIBUTE_FORMAT
(
printf
,
2
,
4
);
extern
int
my_error_register
(
const
char
**
errmsgs
,
int
first
,
int
last
);
extern
const
char
**
my_error_unregister
(
int
first
,
int
last
);
extern
int
my_message
(
uint
my_err
,
const
char
*
str
,
myf
MyFlags
);
...
...
sql/item_timefunc.cc
View file @
7a23b1ba
...
...
@@ -65,7 +65,7 @@ static bool make_datetime(date_time_format_types format, TIME *ltime,
ltime
->
hour
,
ltime
->
minute
,
ltime
->
second
);
break
;
case
TIME_MICROSECOND
:
length
=
cs
->
cset
->
snprintf
(
cs
,
buff
,
length
,
"%s%02d:%02d:%02d.%06d"
,
length
=
cs
->
cset
->
snprintf
(
cs
,
buff
,
length
,
"%s%02d:%02d:%02d.%06
l
d"
,
ltime
->
neg
?
"-"
:
""
,
ltime
->
hour
,
ltime
->
minute
,
ltime
->
second
,
ltime
->
second_part
);
...
...
@@ -82,7 +82,7 @@ static bool make_datetime(date_time_format_types format, TIME *ltime,
break
;
case
DATE_TIME_MICROSECOND
:
length
=
cs
->
cset
->
snprintf
(
cs
,
buff
,
length
,
"%04d-%02d-%02d %02d:%02d:%02d.%06d"
,
"%04d-%02d-%02d %02d:%02d:%02d.%06
l
d"
,
ltime
->
year
,
ltime
->
month
,
ltime
->
day
,
ltime
->
hour
,
ltime
->
minute
,
ltime
->
second
,
ltime
->
second_part
);
...
...
sql/mysql_priv.h
View file @
7a23b1ba
...
...
@@ -1438,10 +1438,12 @@ void sql_perror(const char *message);
int
vprint_msg_to_log
(
enum
loglevel
level
,
const
char
*
format
,
va_list
args
);
void
sql_print_error
(
const
char
*
format
,
...);
void
sql_print_warning
(
const
char
*
format
,
...);
void
sql_print_information
(
const
char
*
format
,
...);
typedef
void
(
*
sql_print_message_func
)(
const
char
*
format
,
...);
void
sql_print_error
(
const
char
*
format
,
...)
ATTRIBUTE_FORMAT
(
printf
,
1
,
2
);
void
sql_print_warning
(
const
char
*
format
,
...)
ATTRIBUTE_FORMAT
(
printf
,
1
,
2
);
void
sql_print_information
(
const
char
*
format
,
...)
ATTRIBUTE_FORMAT
(
printf
,
1
,
2
);
typedef
void
(
*
sql_print_message_func
)(
const
char
*
format
,
...)
ATTRIBUTE_FORMAT
(
printf
,
1
,
2
);
extern
sql_print_message_func
sql_print_message_handlers
[];
/* type of the log table */
...
...
sql/mysqld.cc
View file @
7a23b1ba
...
...
@@ -1091,7 +1091,7 @@ pthread_handler_t kill_server_thread(void *arg __attribute__((unused)))
extern
"C"
sig_handler
print_signal_warning
(
int
sig
)
{
if
(
global_system_variables
.
log_warnings
)
sql_print_warning
(
"Got signal %d from thread %d"
,
sig
,
my_thread_id
());
sql_print_warning
(
"Got signal %d from thread %
l
d"
,
sig
,
my_thread_id
());
#ifdef DONT_REMEMBER_SIGNAL
my_sigset
(
sig
,
print_signal_warning
);
/* int. thread system calls */
#endif
...
...
@@ -1601,8 +1601,8 @@ static void network_init(void)
if
(
strlen
(
mysqld_unix_port
)
>
(
sizeof
(
UNIXaddr
.
sun_path
)
-
1
))
{
sql_print_error
(
"The socket file path is too long (> %
d
): %s"
,
sizeof
(
UNIXaddr
.
sun_path
)
-
1
,
mysqld_unix_port
);
sql_print_error
(
"The socket file path is too long (> %
lu
): %s"
,
sizeof
(
UNIXaddr
.
sun_path
)
-
1
,
mysqld_unix_port
);
unireg_abort
(
1
);
}
if
((
unix_sock
=
socket
(
AF_UNIX
,
SOCK_STREAM
,
0
))
<
0
)
...
...
@@ -2953,7 +2953,7 @@ static void openssl_lock(int mode, openssl_lock_t *lock, const char *file,
}
if
(
err
)
{
sql_print_error
(
"Fatal: can't %s OpenSSL
%s
lock"
,
what
);
sql_print_error
(
"Fatal: can't %s OpenSSL lock"
,
what
);
abort
();
}
}
...
...
@@ -7656,14 +7656,15 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
exit
(
1
);
}
switch
(
method
-
1
)
{
case
0
:
method_conv
=
MI_STATS_METHOD_
NULLS_NOT_EQUAL
;
case
2
:
method_conv
=
MI_STATS_METHOD_
IGNORE_NULLS
;
break
;
case
1
:
method_conv
=
MI_STATS_METHOD_NULLS_EQUAL
;
break
;
case
2
:
method_conv
=
MI_STATS_METHOD_IGNORE_NULLS
;
case
0
:
default:
method_conv
=
MI_STATS_METHOD_NULLS_NOT_EQUAL
;
break
;
}
global_system_variables
.
myisam_stats_method
=
method_conv
;
...
...
sql/opt_range.cc
View file @
7a23b1ba
...
...
@@ -6946,8 +6946,9 @@ void SEL_ARG::test_use_count(SEL_ARG *root)
ulong
count
=
count_key_part_usage
(
root
,
pos
->
next_key_part
);
if
(
count
>
pos
->
next_key_part
->
use_count
)
{
sql_print_information
(
"Use_count: Wrong count for key at 0x%lx, %lu should be %lu"
,
pos
,
pos
->
next_key_part
->
use_count
,
count
);
sql_print_information
(
"Use_count: Wrong count for key at 0x%lx, %lu "
"should be %lu"
,
(
long
unsigned
int
)
pos
,
pos
->
next_key_part
->
use_count
,
count
);
return
;
}
pos
->
next_key_part
->
test_use_count
(
root
);
...
...
@@ -6955,7 +6956,7 @@ void SEL_ARG::test_use_count(SEL_ARG *root)
}
if
(
e_count
!=
elements
)
sql_print_warning
(
"Wrong use count: %u (should be %u) for tree at 0x%lx"
,
e_count
,
elements
,
(
gptr
)
this
);
e_count
,
elements
,
(
long
unsigned
int
)
this
);
}
#endif
...
...
sql/set_var.cc
View file @
7a23b1ba
...
...
@@ -1218,8 +1218,8 @@ static void fix_tx_isolation(THD *thd, enum_var_type type)
thd
->
variables
.
tx_isolation
);
}
static
void
fix_completion_type
(
THD
*
thd
__attribute__
(
unused
),
enum_var_type
type
__attribute__
(
unused
))
{}
static
void
fix_completion_type
(
THD
*
thd
__attribute__
(
(
unused
)),
enum_var_type
type
__attribute__
(
(
unused
)
))
{}
static
int
check_completion_type
(
THD
*
thd
,
set_var
*
var
)
{
...
...
@@ -1258,14 +1258,14 @@ static void fix_net_retry_count(THD *thd, enum_var_type type)
thd
->
net
.
retry_count
=
thd
->
variables
.
net_retry_count
;
}
#else
/* HAVE_REPLICATION */
static
void
fix_net_read_timeout
(
THD
*
thd
__attribute__
(
unused
),
enum_var_type
type
__attribute__
(
unused
))
static
void
fix_net_read_timeout
(
THD
*
thd
__attribute__
(
(
unused
)
),
enum_var_type
type
__attribute__
(
(
unused
)
))
{}
static
void
fix_net_write_timeout
(
THD
*
thd
__attribute__
(
unused
),
enum_var_type
type
__attribute__
(
unused
))
static
void
fix_net_write_timeout
(
THD
*
thd
__attribute__
(
(
unused
)
),
enum_var_type
type
__attribute__
(
(
unused
)
))
{}
static
void
fix_net_retry_count
(
THD
*
thd
__attribute__
(
unused
),
enum_var_type
type
__attribute__
(
unused
))
static
void
fix_net_retry_count
(
THD
*
thd
__attribute__
(
(
unused
)
),
enum_var_type
type
__attribute__
(
(
unused
)
))
{}
#endif
/* HAVE_REPLICATION */
...
...
sql/slave.cc
View file @
7a23b1ba
...
...
@@ -4447,7 +4447,7 @@ static int connect_to_master(THD* thd, MYSQL* mysql, MASTER_INFO* mi,
suppress_warnings
=
0
;
sql_print_error
(
"Slave I/O thread: error %s to master \
'%s@%s:%d': \
Error: '%s' errno: %d retry-time: %d retries: %
d
"
,
Error: '%s' errno: %d retry-time: %d retries: %
lu
"
,
(
reconnect
?
"reconnecting"
:
"connecting"
),
mi
->
user
,
mi
->
host
,
mi
->
port
,
mysql_error
(
mysql
),
last_errno
,
...
...
sql/slave.h
View file @
7a23b1ba
...
...
@@ -272,7 +272,8 @@ const char *print_slave_db_safe(const char *db);
int
check_expected_error
(
THD
*
thd
,
RELAY_LOG_INFO
*
rli
,
int
error_code
);
void
skip_load_data_infile
(
NET
*
net
);
void
slave_print_msg
(
enum
loglevel
level
,
RELAY_LOG_INFO
*
rli
,
int
err_code
,
const
char
*
msg
,
...);
int
err_code
,
const
char
*
msg
,
...)
ATTRIBUTE_FORMAT
(
printf
,
4
,
5
);
void
end_slave
();
/* clean up */
void
init_master_info_with_options
(
MASTER_INFO
*
mi
);
...
...
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