mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
Merge rama.(none):/home/jimw/my/mysql-5.0-clean
into rama.(none):/home/jimw/my/mysql-5.1-clean include/m_ctype.h: Auto merged include/m_string.h: Auto merged include/my_global.h: Auto merged include/my_sys.h: Auto merged sql/item_subselect.cc: Auto merged sql/item_timefunc.cc: Auto merged sql/opt_range.cc: Auto merged sql/slave.cc: Auto merged sql/sql_acl.cc: Auto merged sql/mysql_priv.h: Resolve conflict sql/mysqld.cc: Resolve conflict sql/set_var.cc: Resolve conflict sql/slave.h: Resolve conflict sql/sql_class.h: Resolve conflict
This commit is contained in:
commit
c6e2a2a49b
11 changed files with 60 additions and 33 deletions
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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.%06ld",
|
||||
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.%06ld",
|
||||
ltime->year, ltime->month, ltime->day,
|
||||
ltime->hour, ltime->minute, ltime->second,
|
||||
ltime->second_part);
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 %ld", 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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue