Commit dfb74dea authored by Sergei Golubchik's avatar Sergei Golubchik

Merge branch '10.0' into 10.1

parents b785857d e7cb032e
# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
...@@ -51,6 +51,7 @@ MYSQL_ADD_EXECUTABLE(mysqldump mysqldump.c ../sql-common/my_user.c) ...@@ -51,6 +51,7 @@ MYSQL_ADD_EXECUTABLE(mysqldump mysqldump.c ../sql-common/my_user.c)
TARGET_LINK_LIBRARIES(mysqldump mysqlclient) TARGET_LINK_LIBRARIES(mysqldump mysqlclient)
MYSQL_ADD_EXECUTABLE(mysqlimport mysqlimport.c) MYSQL_ADD_EXECUTABLE(mysqlimport mysqlimport.c)
SET_SOURCE_FILES_PROPERTIES(mysqlimport.c PROPERTIES COMPILE_FLAGS "-DTHREADS")
TARGET_LINK_LIBRARIES(mysqlimport mysqlclient) TARGET_LINK_LIBRARIES(mysqlimport mysqlclient)
MYSQL_ADD_EXECUTABLE(mysql_upgrade mysql_upgrade.c COMPONENT Server) MYSQL_ADD_EXECUTABLE(mysql_upgrade mysql_upgrade.c COMPONENT Server)
......
/* /*
Copyright (c) 2000, 2012, Oracle and/or its affiliates. Copyright (c) 2000, 2015, Oracle and/or its affiliates.
Copyright (c) 2011, 2015, MariaDB
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
...@@ -30,7 +31,6 @@ ...@@ -30,7 +31,6 @@
#include "client_priv.h" #include "client_priv.h"
#include "mysql_version.h" #include "mysql_version.h"
#include <my_pthread.h>
#include <welcome_copyright_notice.h> /* ORACLE_WELCOME_COPYRIGHT_NOTICE */ #include <welcome_copyright_notice.h> /* ORACLE_WELCOME_COPYRIGHT_NOTICE */
...@@ -484,7 +484,6 @@ static void db_disconnect(char *host, MYSQL *mysql) ...@@ -484,7 +484,6 @@ static void db_disconnect(char *host, MYSQL *mysql)
} }
static void safe_exit(int error, MYSQL *mysql) static void safe_exit(int error, MYSQL *mysql)
{ {
if (error && ignore_errors) if (error && ignore_errors)
......
# Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
...@@ -49,10 +49,12 @@ IF(CMAKE_C_COMPILER MATCHES "icl") ...@@ -49,10 +49,12 @@ IF(CMAKE_C_COMPILER MATCHES "icl")
SET(MSVC TRUE) SET(MSVC TRUE)
ENDIF() ENDIF()
ADD_DEFINITIONS("-D_WINDOWS -D__WIN__ -D_CRT_SECURE_NO_DEPRECATE") ADD_DEFINITIONS(-D_WINDOWS -D__WIN__ -D_CRT_SECURE_NO_DEPRECATE)
ADD_DEFINITIONS("-D_WIN32_WINNT=0x0501") ADD_DEFINITIONS(-D_WIN32_WINNT=0x0501)
# We do not want the windows.h macros min/max
ADD_DEFINITIONS(-DNOMINMAX)
# Speed up build process excluding unused header files # Speed up build process excluding unused header files
ADD_DEFINITIONS("-DWIN32_LEAN_AND_MEAN") ADD_DEFINITIONS(-DWIN32_LEAN_AND_MEAN)
# Adjust compiler and linker flags # Adjust compiler and linker flags
IF(MINGW AND CMAKE_SIZEOF_VOID_P EQUAL 4) IF(MINGW AND CMAKE_SIZEOF_VOID_P EQUAL 4)
......
...@@ -12,6 +12,35 @@ before calling SSL_new(); ...@@ -12,6 +12,35 @@ before calling SSL_new();
*** end Note *** *** end Note ***
yaSSL Release notes, version 2.3.8 (9/17/2015)
This release of yaSSL fixes a high security vulnerability. All users
SHOULD update. If using yaSSL for TLS on the server side with private
RSA keys allowing ephemeral key exchange you MUST update and regenerate
the RSA private keys. This report is detailed in:
https://people.redhat.com/~fweimer/rsa-crt-leaks.pdf
yaSSL now detects RSA signature faults and returns an error.
yaSSL Patch notes, version 2.3.7e (6/26/2015)
This release of yaSSL includes a fix for Date less than comparison.
Previously yaSSL would return true on less than comparisons if the Dates
were equal. Reported by Oracle. No security problem, but if a cert was
generated right now, a server started using it in the same second, and a
client tried to verify it in the same second it would report not yet valid.
yaSSL Patch notes, version 2.3.7d (6/22/2015)
This release of yaSSL includes a fix for input_buffer set_current with
index 0. SSL_peek() at front of waiting data could trigger. Robert
Golebiowski of Oracle identified and suggested a fix, thanks!
yaSSL Patch notes, version 2.3.7c (6/12/2015)
This release of yaSSL does certificate DATE comparisons to the second
instead of to the minute, helpful when using freshly generated certs.
Though keep in mind that time sync differences could still show up.
yaSSL Patch notes, version 2.3.7b (3/18/2015)
This release of yaSSL fixes a potential crash with corrupted private keys.
Also detects bad keys earlier for user.
yaSSL Release notes, version 2.3.7 (12/10/2014) yaSSL Release notes, version 2.3.7 (12/10/2014)
This release of yaSSL fixes the potential to process duplicate handshake This release of yaSSL fixes the potential to process duplicate handshake
messages by explicitly marking/checking received handshake messages. messages by explicitly marking/checking received handshake messages.
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "rsa.h" #include "rsa.h"
#define YASSL_VERSION "2.3.7" #define YASSL_VERSION "2.3.8"
#if defined(__cplusplus) #if defined(__cplusplus)
......
...@@ -53,7 +53,8 @@ enum YasslError { ...@@ -53,7 +53,8 @@ enum YasslError {
compress_error = 118, compress_error = 118,
decompress_error = 119, decompress_error = 119,
pms_version_error = 120, pms_version_error = 120,
sanityCipher_error = 121 sanityCipher_error = 121,
rsaSignFault_error = 122
// !!!! add error message to .cpp !!!! // !!!! add error message to .cpp !!!!
......
...@@ -165,7 +165,7 @@ void input_buffer::set_error() ...@@ -165,7 +165,7 @@ void input_buffer::set_error()
void input_buffer::set_current(uint i) void input_buffer::set_current(uint i)
{ {
if (error_ == 0 && (i == 0 || check(i - 1, size_) == 0)) if (error_ == 0 && check(i ? i - 1 : 0, size_) == 0)
current_ = i; current_ = i;
else else
error_ = -1; error_ = -1;
......
...@@ -1173,6 +1173,8 @@ void sendCertificateVerify(SSL& ssl, BufferOutput buffer) ...@@ -1173,6 +1173,8 @@ void sendCertificateVerify(SSL& ssl, BufferOutput buffer)
CertificateVerify verify; CertificateVerify verify;
verify.Build(ssl); verify.Build(ssl);
if (ssl.GetError()) return;
RecordLayerHeader rlHeader; RecordLayerHeader rlHeader;
HandShakeHeader hsHeader; HandShakeHeader hsHeader;
mySTL::auto_ptr<output_buffer> out(NEW_YS output_buffer); mySTL::auto_ptr<output_buffer> out(NEW_YS output_buffer);
......
...@@ -37,6 +37,8 @@ ...@@ -37,6 +37,8 @@
#include "file.hpp" // for TaoCrypt Source #include "file.hpp" // for TaoCrypt Source
#include "coding.hpp" // HexDecoder #include "coding.hpp" // HexDecoder
#include "helpers.hpp" // for placement new hack #include "helpers.hpp" // for placement new hack
#include "rsa.hpp" // for TaoCrypt RSA key decode
#include "dsa.hpp" // for TaoCrypt DSA key decode
#include <stdio.h> #include <stdio.h>
#include <time.h> #include <time.h>
...@@ -55,6 +57,8 @@ namespace yaSSL { ...@@ -55,6 +57,8 @@ namespace yaSSL {
int read_file(SSL_CTX* ctx, const char* file, int format, CertType type) int read_file(SSL_CTX* ctx, const char* file, int format, CertType type)
{ {
int ret = SSL_SUCCESS;
if (format != SSL_FILETYPE_ASN1 && format != SSL_FILETYPE_PEM) if (format != SSL_FILETYPE_ASN1 && format != SSL_FILETYPE_PEM)
return SSL_BAD_FILETYPE; return SSL_BAD_FILETYPE;
...@@ -142,8 +146,31 @@ int read_file(SSL_CTX* ctx, const char* file, int format, CertType type) ...@@ -142,8 +146,31 @@ int read_file(SSL_CTX* ctx, const char* file, int format, CertType type)
} }
} }
} }
if (type == PrivateKey && ctx->privateKey_) {
// see if key is valid early
TaoCrypt::Source rsaSource(ctx->privateKey_->get_buffer(),
ctx->privateKey_->get_length());
TaoCrypt::RSA_PrivateKey rsaKey;
rsaKey.Initialize(rsaSource);
if (rsaSource.GetError().What()) {
// rsa failed see if DSA works
TaoCrypt::Source dsaSource(ctx->privateKey_->get_buffer(),
ctx->privateKey_->get_length());
TaoCrypt::DSA_PrivateKey dsaKey;
dsaKey.Initialize(dsaSource);
if (rsaSource.GetError().What()) {
// neither worked
ret = SSL_FAILURE;
}
}
}
fclose(input); fclose(input);
return SSL_SUCCESS; return ret;
} }
......
...@@ -148,6 +148,10 @@ void SetErrorString(YasslError error, char* buffer) ...@@ -148,6 +148,10 @@ void SetErrorString(YasslError error, char* buffer)
strncpy(buffer, "sanity check on cipher text size error", max); strncpy(buffer, "sanity check on cipher text size error", max);
break; break;
case rsaSignFault_error:
strncpy(buffer, "rsa signature fault error", max);
break;
// openssl errors // openssl errors
case SSL_ERROR_WANT_READ : case SSL_ERROR_WANT_READ :
strncpy(buffer, "the read operation would block", max); strncpy(buffer, "the read operation would block", max);
......
...@@ -196,9 +196,16 @@ void DH_Server::build(SSL& ssl) ...@@ -196,9 +196,16 @@ void DH_Server::build(SSL& ssl)
sha.update(tmp.get_buffer(), tmp.get_size()); sha.update(tmp.get_buffer(), tmp.get_size());
sha.get_digest(&hash[MD5_LEN]); sha.get_digest(&hash[MD5_LEN]);
if (ssl.getSecurity().get_parms().sig_algo_ == rsa_sa_algo) if (ssl.getSecurity().get_parms().sig_algo_ == rsa_sa_algo) {
auth->sign(signature_, hash, sizeof(hash), auth->sign(signature_, hash, sizeof(hash),
ssl.getCrypto().get_random()); ssl.getCrypto().get_random());
// check for rsa signautre fault
if (!auth->verify(hash, sizeof(hash), signature_,
auth->get_signatureLength())) {
ssl.SetError(rsaSignFault_error);
return;
}
}
else { else {
auth->sign(signature_, &hash[MD5_LEN], SHA_LEN, auth->sign(signature_, &hash[MD5_LEN], SHA_LEN,
ssl.getCrypto().get_random()); ssl.getCrypto().get_random());
...@@ -2159,6 +2166,12 @@ void CertificateVerify::Build(SSL& ssl) ...@@ -2159,6 +2166,12 @@ void CertificateVerify::Build(SSL& ssl)
memcpy(sig.get(), len, VERIFY_HEADER); memcpy(sig.get(), len, VERIFY_HEADER);
rsa.sign(sig.get() + VERIFY_HEADER, hashes_.md5_, sizeof(Hashes), rsa.sign(sig.get() + VERIFY_HEADER, hashes_.md5_, sizeof(Hashes),
ssl.getCrypto().get_random()); ssl.getCrypto().get_random());
// check for rsa signautre fault
if (!rsa.verify(hashes_.md5_, sizeof(Hashes), sig.get() + VERIFY_HEADER,
rsa.get_cipherLength())) {
ssl.SetError(rsaSignFault_error);
return;
}
} }
else { // DSA else { // DSA
DSS dss(cert.get_privateKey(), cert.get_privateKeyLength(), false); DSS dss(cert.get_privateKey(), cert.get_privateKeyLength(), false);
......
...@@ -84,7 +84,7 @@ void ASN1_TIME_extract(const unsigned char* date, unsigned char format, ...@@ -84,7 +84,7 @@ void ASN1_TIME_extract(const unsigned char* date, unsigned char format,
namespace { // locals namespace { // locals
// to the minute // to the second
bool operator>(tm& a, tm& b) bool operator>(tm& a, tm& b)
{ {
if (a.tm_year > b.tm_year) if (a.tm_year > b.tm_year)
...@@ -105,13 +105,18 @@ bool operator>(tm& a, tm& b) ...@@ -105,13 +105,18 @@ bool operator>(tm& a, tm& b)
a.tm_min > b.tm_min) a.tm_min > b.tm_min)
return true; return true;
if (a.tm_year == b.tm_year && a.tm_mon == b.tm_mon &&
a.tm_mday == b.tm_mday && a.tm_hour == b.tm_hour &&
a.tm_min == b.tm_min && a.tm_sec > b.tm_sec)
return true;
return false; return false;
} }
bool operator<(tm& a, tm&b) bool operator<(tm& a, tm&b)
{ {
return !(a>b); return (b>a);
} }
......
...@@ -140,6 +140,10 @@ word32 RSA_BlockType2::UnPad(const byte *pkcsBlock, unsigned int pkcsBlockLen, ...@@ -140,6 +140,10 @@ word32 RSA_BlockType2::UnPad(const byte *pkcsBlock, unsigned int pkcsBlockLen,
void RSA_BlockType1::Pad(const byte* input, word32 inputLen, byte* pkcsBlock, void RSA_BlockType1::Pad(const byte* input, word32 inputLen, byte* pkcsBlock,
word32 pkcsBlockLen, RandomNumberGenerator&) const word32 pkcsBlockLen, RandomNumberGenerator&) const
{ {
// sanity checks
if (input == NULL || pkcsBlock == NULL)
return;
// convert from bit length to byte length // convert from bit length to byte length
if (pkcsBlockLen % 8 != 0) if (pkcsBlockLen % 8 != 0)
{ {
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
# #
no_pid=-1
server_pid=$no_pid server_pid=$no_pid
......
...@@ -44,7 +44,7 @@ extern "C" { ...@@ -44,7 +44,7 @@ extern "C" {
#define MARIA_NAME_IEXT ".MAI" #define MARIA_NAME_IEXT ".MAI"
#define MARIA_NAME_DEXT ".MAD" #define MARIA_NAME_DEXT ".MAD"
/* Max extra space to use when sorting keys */ /* Max extra space to use when sorting keys */
#define MARIA_MAX_TEMP_LENGTH 2*1024L*1024L*1024L #define MARIA_MAX_TEMP_LENGTH (2*1024L*1024L*1024L)
/* Possible values for maria_block_size (must be power of 2) */ /* Possible values for maria_block_size (must be power of 2) */
#define MARIA_KEY_BLOCK_LENGTH 8192 /* default key block length */ #define MARIA_KEY_BLOCK_LENGTH 8192 /* default key block length */
#define MARIA_MIN_KEY_BLOCK_LENGTH 1024 /* Min key block length */ #define MARIA_MIN_KEY_BLOCK_LENGTH 1024 /* Min key block length */
......
...@@ -50,7 +50,7 @@ extern ulong my_time_to_wait_for_lock; ...@@ -50,7 +50,7 @@ extern ulong my_time_to_wait_for_lock;
#define ALARM_INIT #define ALARM_INIT
#define ALARM_END #define ALARM_END
#define ALARM_TEST (alarm_pos++ >= alarm_end_pos) #define ALARM_TEST (alarm_pos++ >= alarm_end_pos)
#define ALARM_REINIT alarm_end_pos+=MY_HOW_OFTEN_TO_WRITE #define ALARM_REINIT (alarm_end_pos+=MY_HOW_OFTEN_TO_WRITE)
#endif /* HAVE_ALARM */ #endif /* HAVE_ALARM */
#ifdef __cplusplus #ifdef __cplusplus
......
...@@ -537,13 +537,13 @@ typedef ulong key_part_map; ...@@ -537,13 +537,13 @@ typedef ulong key_part_map;
#define SEARCH_NULL_ARE_EQUAL 32768 /* NULL in keys are equal */ #define SEARCH_NULL_ARE_EQUAL 32768 /* NULL in keys are equal */
#define SEARCH_NULL_ARE_NOT_EQUAL 65536 /* NULL in keys are not equal */ #define SEARCH_NULL_ARE_NOT_EQUAL 65536 /* NULL in keys are not equal */
/* Use this when inserting a key in position order */ /* Use this when inserting a key in position order */
#define SEARCH_INSERT SEARCH_NULL_ARE_NOT_EQUAL*2 #define SEARCH_INSERT (SEARCH_NULL_ARE_NOT_EQUAL*2)
/* Only part of the key is specified while reading */ /* Only part of the key is specified while reading */
#define SEARCH_PART_KEY SEARCH_INSERT*2 #define SEARCH_PART_KEY (SEARCH_INSERT*2)
/* Used when user key (key 2) contains transaction id's */ /* Used when user key (key 2) contains transaction id's */
#define SEARCH_USER_KEY_HAS_TRANSID SEARCH_PART_KEY*2 #define SEARCH_USER_KEY_HAS_TRANSID (SEARCH_PART_KEY*2)
/* Used when page key (key 1) contains transaction id's */ /* Used when page key (key 1) contains transaction id's */
#define SEARCH_PAGE_KEY_HAS_TRANSID SEARCH_USER_KEY_HAS_TRANSID*2 #define SEARCH_PAGE_KEY_HAS_TRANSID (SEARCH_USER_KEY_HAS_TRANSID*2)
/* bits in opt_flag */ /* bits in opt_flag */
#define QUICK_USED 1 #define QUICK_USED 1
......
...@@ -58,7 +58,7 @@ extern void _db_end_(void); ...@@ -58,7 +58,7 @@ extern void _db_end_(void);
extern void _db_lock_file_(void); extern void _db_lock_file_(void);
extern void _db_unlock_file_(void); extern void _db_unlock_file_(void);
extern FILE *_db_fp_(void); extern FILE *_db_fp_(void);
extern void _db_flush_(); extern void _db_flush_(void);
extern void dbug_swap_code_state(void **code_state_store); extern void dbug_swap_code_state(void **code_state_store);
extern void dbug_free_code_state(void **code_state_store); extern void dbug_free_code_state(void **code_state_store);
extern const char* _db_get_func_(void); extern const char* _db_get_func_(void);
...@@ -123,7 +123,7 @@ extern const char* _db_get_func_(void); ...@@ -123,7 +123,7 @@ extern const char* _db_get_func_(void);
#ifdef __WIN__ #ifdef __WIN__
#define DBUG_SUICIDE() DBUG_ABORT() #define DBUG_SUICIDE() DBUG_ABORT()
#else #else
extern void _db_suicide_(); extern void _db_suicide_(void);
#define DBUG_SUICIDE() (_db_flush_(), _db_suicide_()) #define DBUG_SUICIDE() (_db_flush_(), _db_suicide_())
#endif #endif
......
...@@ -547,7 +547,7 @@ typedef int my_socket; /* File descriptor for sockets */ ...@@ -547,7 +547,7 @@ typedef int my_socket; /* File descriptor for sockets */
/* Type for fuctions that handles signals */ /* Type for fuctions that handles signals */
#define sig_handler RETSIGTYPE #define sig_handler RETSIGTYPE
C_MODE_START C_MODE_START
typedef void (*sig_return)();/* Returns type from signal */ typedef void (*sig_return)(); /* Returns type from signal */
C_MODE_END C_MODE_END
#if defined(__GNUC__) && !defined(_lint) #if defined(__GNUC__) && !defined(_lint)
typedef char pchar; /* Mixed prototypes can take char */ typedef char pchar; /* Mixed prototypes can take char */
......
...@@ -701,8 +701,8 @@ extern void my_thread_end(void); ...@@ -701,8 +701,8 @@ extern void my_thread_end(void);
extern const char *my_thread_name(void); extern const char *my_thread_name(void);
extern my_thread_id my_thread_dbug_id(void); extern my_thread_id my_thread_dbug_id(void);
extern int pthread_dummy(int); extern int pthread_dummy(int);
extern void my_mutex_init(); extern void my_mutex_init(void);
extern void my_mutex_end(); extern void my_mutex_end(void);
/* All thread specific variables are in the following struct */ /* All thread specific variables are in the following struct */
...@@ -745,8 +745,8 @@ struct st_my_thread_var ...@@ -745,8 +745,8 @@ struct st_my_thread_var
}; };
extern struct st_my_thread_var *_my_thread_var(void) __attribute__ ((const)); extern struct st_my_thread_var *_my_thread_var(void) __attribute__ ((const));
extern void **my_thread_var_dbug(); extern void **my_thread_var_dbug(void);
extern safe_mutex_t **my_thread_var_mutex_in_use(); extern safe_mutex_t **my_thread_var_mutex_in_use(void);
extern uint my_thread_end_wait_time; extern uint my_thread_end_wait_time;
extern my_bool safe_mutex_deadlock_detector; extern my_bool safe_mutex_deadlock_detector;
#define my_thread_var (_my_thread_var()) #define my_thread_var (_my_thread_var())
......
...@@ -690,7 +690,7 @@ extern void my_osmaperr(unsigned long last_error); ...@@ -690,7 +690,7 @@ extern void my_osmaperr(unsigned long last_error);
#endif #endif
extern void init_glob_errs(void); extern void init_glob_errs(void);
extern const char** get_global_errmsgs(); extern const char** get_global_errmsgs(void);
extern void wait_for_free_space(const char *filename, int errors); extern void wait_for_free_space(const char *filename, int errors);
extern FILE *my_fopen(const char *FileName,int Flags,myf MyFlags); extern FILE *my_fopen(const char *FileName,int Flags,myf MyFlags);
extern FILE *my_fdopen(File Filedes,const char *name, int Flags,myf MyFlags); extern FILE *my_fdopen(File Filedes,const char *name, int Flags,myf MyFlags);
...@@ -715,7 +715,7 @@ extern void my_printf_error(uint my_err, const char *format, ...@@ -715,7 +715,7 @@ extern void my_printf_error(uint my_err, const char *format,
ATTRIBUTE_FORMAT(printf, 2, 4); ATTRIBUTE_FORMAT(printf, 2, 4);
extern void my_printv_error(uint error, const char *format, myf MyFlags, extern void my_printv_error(uint error, const char *format, myf MyFlags,
va_list ap); va_list ap);
extern int my_error_register(const char** (*get_errmsgs) (), extern int my_error_register(const char** (*get_errmsgs) (void),
uint first, uint last); uint first, uint last);
extern const char **my_error_unregister(uint first, uint last); extern const char **my_error_unregister(uint first, uint last);
extern void my_message(uint my_err, const char *str,myf MyFlags); extern void my_message(uint my_err, const char *str,myf MyFlags);
...@@ -925,12 +925,12 @@ extern uint my_set_max_open_files(uint files); ...@@ -925,12 +925,12 @@ extern uint my_set_max_open_files(uint files);
void my_free_open_file_info(void); void my_free_open_file_info(void);
extern my_bool my_gethwaddr(uchar *to); extern my_bool my_gethwaddr(uchar *to);
extern int my_getncpus(); extern int my_getncpus(void);
#define HRTIME_RESOLUTION 1000000ULL /* microseconds */ #define HRTIME_RESOLUTION 1000000ULL /* microseconds */
typedef struct {ulonglong val;} my_hrtime_t; typedef struct {ulonglong val;} my_hrtime_t;
void my_time_init(); void my_time_init(void);
extern my_hrtime_t my_hrtime(); extern my_hrtime_t my_hrtime(void);
extern ulonglong my_interval_timer(void); extern ulonglong my_interval_timer(void);
extern ulonglong my_getcputime(void); extern ulonglong my_getcputime(void);
...@@ -989,7 +989,7 @@ int my_msync(int, void *, size_t, int); ...@@ -989,7 +989,7 @@ int my_msync(int, void *, size_t, int);
void my_uuid_init(ulong seed1, ulong seed2); void my_uuid_init(ulong seed1, ulong seed2);
void my_uuid(uchar *guid); void my_uuid(uchar *guid);
void my_uuid2str(const uchar *guid, char *s); void my_uuid2str(const uchar *guid, char *s);
void my_uuid_end(); void my_uuid_end(void);
/* character sets */ /* character sets */
extern void my_charset_loader_init_mysys(MY_CHARSET_LOADER *loader); extern void my_charset_loader_init_mysys(MY_CHARSET_LOADER *loader);
......
...@@ -79,8 +79,8 @@ extern unsigned int mariadb_deinitialize_ssl; ...@@ -79,8 +79,8 @@ extern unsigned int mariadb_deinitialize_ssl;
extern unsigned int mysql_port; extern unsigned int mysql_port;
extern char *mysql_unix_port; extern char *mysql_unix_port;
#define CLIENT_NET_READ_TIMEOUT 365*24*3600 /* Timeout on read */ #define CLIENT_NET_READ_TIMEOUT (365*24*3600) /* Timeout on read */
#define CLIENT_NET_WRITE_TIMEOUT 365*24*3600 /* Timeout on write */ #define CLIENT_NET_WRITE_TIMEOUT (365*24*3600) /* Timeout on write */
#define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG) #define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
#define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG) #define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)
......
...@@ -241,5 +241,4 @@ Read this file after the global files are read. ...@@ -241,5 +241,4 @@ Read this file after the global files are read.
.SH "SEE ALSO" .SH "SEE ALSO"
\fBmyisamchk(1)\fR \fBmyisamchk(1)\fR
.PP .PP
For more information, please refer to the MariaDB Knowledge Base, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which is available online at http://mariadb.com/kb/
...@@ -50,5 +50,6 @@ Only read default options from the given file #. ...@@ -50,5 +50,6 @@ Only read default options from the given file #.
Read this file after the global files are read. Read this file after the global files are read.
.PP .PP
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MariaDB Knowledge Base, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which is available online at http://mariadb.com/kb/ .SH AUTHOR
MariaDB Foundation (http://www.mariadb.org/).
...@@ -25,5 +25,4 @@ Be verbose. ...@@ -25,5 +25,4 @@ Be verbose.
.SH "SEE ALSO" .SH "SEE ALSO"
\fBmyisam_ftdump(1)\fR \fBmyisam_ftdump(1)\fR
.PP .PP
For more information, please refer to the MariaDB Knowledge Base, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which is available online at http://mariadb.com/kb/
...@@ -72,5 +72,4 @@ Read this file after the global files are read. ...@@ -72,5 +72,4 @@ Read this file after the global files are read.
.SH "SEE ALSO" .SH "SEE ALSO"
\fBmyisampack(1)\fR \fBmyisampack(1)\fR
.PP .PP
For more information, please refer to the MariaDB Knowledge Base, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which is available online at http://mariadb.com/kb/
...@@ -104,5 +104,4 @@ Read this file after the global files are read. ...@@ -104,5 +104,4 @@ Read this file after the global files are read.
.SH "SEE ALSO" .SH "SEE ALSO"
\fBmyisamlog(1)\fR \fBmyisamlog(1)\fR
.PP .PP
For more information, please refer to the MariaDB Knowledge Base, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which is available online at http://mariadb.com/kb/
'\" t '\" t
.\" Title: \fBcomp_err\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBCOMP_ERR\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBCOMP_ERR\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -20,7 +13,7 @@ ...@@ -20,7 +13,7 @@
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" comp_err .\" comp_err
.SH "NAME" .SH "NAME"
comp_err \- compile MySQL error message file comp_err \- compile MariaDB error message file
.SH "SYNOPSIS" .SH "SYNOPSIS"
.HP \w'\fBcomp_err\ [\fR\fB\fIoptions\fR\fR\fB]\fR\ 'u .HP \w'\fBcomp_err\ [\fR\fB\fIoptions\fR\fR\fB]\fR\ 'u
\fBcomp_err [\fR\fB\fIoptions\fR\fR\fB]\fR \fBcomp_err [\fR\fB\fIoptions\fR\fR\fB]\fR
...@@ -33,11 +26,11 @@ file that is used by ...@@ -33,11 +26,11 @@ file that is used by
\fBmysqld\fR \fBmysqld\fR
to determine the error messages to display for different error codes\&. to determine the error messages to display for different error codes\&.
\fBcomp_err\fR \fBcomp_err\fR
normally is run automatically when MySQL is built\&. It compiles the normally is run automatically when MariaDB is built\&. It compiles the
errmsg\&.sys errmsg\&.sys
file from the plaintext file located at file from the plaintext file located at
sql/share/errmsg\&.txt sql/share/errmsg\&.txt
in MySQL source distributions\&. in MariaDB source distributions\&.
.PP .PP
\fBcomp_err\fR \fBcomp_err\fR
also generates also generates
...@@ -254,7 +247,7 @@ Display version information and exit\&. ...@@ -254,7 +247,7 @@ Display version information and exit\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -263,8 +256,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -263,8 +256,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBinnochecksum\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBINNOCHECKSUM\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBINNOCHECKSUM\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -69,7 +62,7 @@ supports the following options\&. For options that refer to page numbers, the nu ...@@ -69,7 +62,7 @@ supports the following options\&. For options that refer to page numbers, the nu
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-c\fR \fB\-c, --count\fR
.sp .sp
Print a count of the number of pages in the file\&. Print a count of the number of pages in the file\&.
.RE .RE
...@@ -82,7 +75,7 @@ Print a count of the number of pages in the file\&. ...@@ -82,7 +75,7 @@ Print a count of the number of pages in the file\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-d\fR \fB\-d, --debug\fR
.sp .sp
Debug mode; prints checksums for each page\&. Debug mode; prints checksums for each page\&.
.RE .RE
...@@ -95,7 +88,7 @@ Debug mode; prints checksums for each page\&. ...@@ -95,7 +88,7 @@ Debug mode; prints checksums for each page\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-e \fR\fB\fInum\fR\fR \fB\-e \fR\fB\fInum\fB, --end-page=#\fR\fR
.sp .sp
End at this page number\&. End at this page number\&.
.RE .RE
...@@ -108,7 +101,7 @@ End at this page number\&. ...@@ -108,7 +101,7 @@ End at this page number\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-p \fR\fB\fInum\fR\fR \fB\-p \fR\fB\fInum\fB, --page-num=#\fR\fR
.sp .sp
Check only this page number\&. Check only this page number\&.
.RE .RE
...@@ -121,7 +114,7 @@ Check only this page number\&. ...@@ -121,7 +114,7 @@ Check only this page number\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-s \fR\fB\fInum\fR\fR \fB\-s \fR\fB\fInum\fB, --start-page\fR\fR
.sp .sp
Start at this page number\&. Start at this page number\&.
.RE .RE
...@@ -134,14 +127,27 @@ Start at this page number\&. ...@@ -134,14 +127,27 @@ Start at this page number\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
\fB\-v\fR \fB\-u, --skip-corrupt\fR\fR
.sp
Skip corrupt pages\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fB\-v, --verbose\fR
.sp .sp
Verbose mode; print a progress indicator every five seconds\&. Verbose mode; print a progress indicator every five seconds\&.
.RE .RE
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -150,8 +156,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -150,8 +156,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmake_win_bin_dist\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMAKE_WIN_BIN_DIST" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMAKE_WIN_BIN_DIST" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -169,7 +162,7 @@ directories)\&. ...@@ -169,7 +162,7 @@ directories)\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -178,8 +171,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -178,8 +171,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmsql2mysql\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMSQL2MYSQL\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMSQL2MYSQL\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -60,7 +53,7 @@ utility to make the function name substitutions\&. See ...@@ -60,7 +53,7 @@ utility to make the function name substitutions\&. See
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -69,8 +62,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -69,8 +62,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmy_print_defaults\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMY_PRINT_DEFAULTS" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMY_PRINT_DEFAULTS" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -87,7 +80,9 @@ Display a help message and exit\&. ...@@ -87,7 +80,9 @@ Display a help message and exit\&.
\fB\-\-defaults\-file=\fR\fB\fIfile_name\fR\fR, \fB\-\-defaults\-file=\fR\fB\fIfile_name\fR\fR,
\fB\-c \fR\fB\fIfile_name\fR\fR \fB\-c \fR\fB\fIfile_name\fR\fR
.sp .sp
Read only the given option file\&. Read only the given option file\&. If no extension is given, default extension(.ini or .cnf) will
be used\&. \fB\-\-config-file\fR is deprecated, use \fB\-\-defaults\-file\fR instead\&. If \fB\-\-defaults\-file\fR is
the first option, then read this file only, do not read global or per\-user config files; should be the first option.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -126,7 +121,8 @@ string is ...@@ -126,7 +121,8 @@ string is
\fB\-\-extra\-file=\fR\fB\fIfile_name\fR\fR, \fB\-\-extra\-file=\fR\fB\fIfile_name\fR\fR,
\fB\-e \fR\fB\fIfile_name\fR\fR \fB\-e \fR\fB\fIfile_name\fR\fR
.sp .sp
Read this option file after the global option file but (on Unix) before the user option file\&. Read this option file after the global option file but (on Unix) before the user option
file\&. Should be the first option\&. \fB\-\-extra\-file\fR is deprecated, use \fB\-\-defaults\-extra\-file\fR\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -153,12 +149,27 @@ In addition to the groups named on the command line, read groups that have the g ...@@ -153,12 +149,27 @@ In addition to the groups named on the command line, read groups that have the g
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
.\" my_print_defaults: --mysqld option
.\" mysqld option: my_print_defaults
\fB\-\-mysqld\fR
.sp
Read the same set of groups that the mysqld binary does.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" my_print_defaults: no-defaults option .\" my_print_defaults: no-defaults option
.\" no-defaults option: my_print_defaults .\" no-defaults option: my_print_defaults
\fB\-\-no\-defaults\fR, \fB\-\-no\-defaults\fR,
\fB\-n\fR \fB\-n\fR
.sp .sp
Return an empty string\&. Return an empty string (useful for scripts)\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -195,7 +206,7 @@ Display version information and exit\&. ...@@ -195,7 +206,7 @@ Display version information and exit\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -204,8 +215,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -204,8 +215,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmyisam_ftdump\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYISAM_FTDUMP\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYISAM_FTDUMP\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -242,7 +235,7 @@ Verbose mode\&. Print more output about what the program does\&. ...@@ -242,7 +235,7 @@ Verbose mode\&. Print more output about what the program does\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -251,8 +244,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -251,8 +244,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
'\" t '\" t
.\" Title: \fBmyisamlog\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYISAMLOG\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYISAMLOG\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -225,7 +218,7 @@ Display version information\&. ...@@ -225,7 +218,7 @@ Display version information\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -234,8 +227,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -234,8 +227,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmyisampack\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYISAMPACK\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYISAMPACK\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -72,7 +65,7 @@ if the table might be updated by the server during the packing process\&. It is ...@@ -72,7 +65,7 @@ if the table might be updated by the server during the packing process\&. It is
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
After packing a table, it becomes read only\&. This is generally intended (such as when accessing packed tables on a CD)\&. Allowing writes to a packed table is on our TODO list, but with low priority\&. After packing a table, it becomes read only\&. This is generally intended (such as when accessing packed tables on a CD)\&.
.RE .RE
.PP .PP
Invoke Invoke
...@@ -832,7 +825,7 @@ option to ...@@ -832,7 +825,7 @@ option to
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -841,8 +834,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -841,8 +834,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql-stress-test.pl\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 03/31/2010
.\" Manual: MySQL Database System
.\" Source: MySQL
.\" Language: English
.\" .\"
.TH "\FBMYSQL\-STRESS\-TE" "1" "03/31/2010" "MySQL" "MySQL Database System" .TH "\FBMYSQL\-STRESS\-TE" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -28,7 +21,7 @@ mysql-stress-test.pl \- server stress test program ...@@ -28,7 +21,7 @@ mysql-stress-test.pl \- server stress test program
.PP .PP
The The
\fBmysql\-stress\-test\&.pl\fR \fBmysql\-stress\-test\&.pl\fR
Perl script performs stress\-testing of the MySQL server\&. (MySQL 5\&.0 and up only) Perl script performs stress\-testing of the MariaDB server\&.
.PP .PP
\fBmysql\-stress\-test\&.pl\fR \fBmysql\-stress\-test\&.pl\fR
requires a version of Perl that has been built with threads support\&. requires a version of Perl that has been built with threads support\&.
...@@ -250,7 +243,7 @@ The TCP/IP port number to use for connecting to the server\&. The default is 330 ...@@ -250,7 +243,7 @@ The TCP/IP port number to use for connecting to the server\&. The default is 330
\fB\-\-server\-socket=\fR\fB\fIfile_name\fR\fR \fB\-\-server\-socket=\fR\fB\fIfile_name\fR\fR
.sp .sp
For connections to For connections to
localhost, the Unix socket file to use, or, on Windows, the name of the named pipe to use\&. The default if localhost, the Unix socket file to use, or, on Windows, the name of the named pipe to use\&. The default is
/tmp/mysql\&.sock\&. /tmp/mysql\&.sock\&.
.RE .RE
.sp .sp
...@@ -266,7 +259,7 @@ localhost, the Unix socket file to use, or, on Windows, the name of the named pi ...@@ -266,7 +259,7 @@ localhost, the Unix socket file to use, or, on Windows, the name of the named pi
.\" server-user option: mysql-stress-test.pl .\" server-user option: mysql-stress-test.pl
\fB\-\-server\-user=\fR\fB\fIuser_name\fR\fR \fB\-\-server\-user=\fR\fB\fIuser_name\fR\fR
.sp .sp
The MySQL user name to use when connecting to the server\&. The default is The MariaDB user name to use when connecting to the server\&. The default is
root\&. root\&.
.RE .RE
.sp .sp
...@@ -489,7 +482,7 @@ Verbose mode\&. Print more information about what the program does\&. ...@@ -489,7 +482,7 @@ Verbose mode\&. Print more information about what the program does\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright \(co 2007, 2010, Oracle and/or its affiliates Copyright \(co 2007, 2010, Oracle and/or its affiliates, 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -498,8 +491,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -498,8 +491,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
This diff is collapsed.
'\" t '\" t
.\" Title: \fBmysql.server\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL\&.SERVER\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL\&.SERVER\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -20,35 +13,33 @@ ...@@ -20,35 +13,33 @@
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" mysql.server .\" mysql.server
.SH "NAME" .SH "NAME"
mysql.server \- MySQL server startup script mysql.server \- MariaDB server startup script
.SH "SYNOPSIS" .SH "SYNOPSIS"
.HP \w'\fBmysql\ {start|stop}\fR\ 'u .HP \w'\fBmysql\ {start|stop}\fR\ 'u
\fBmysql {start|stop}\fR \fBmysql {start|stop}\fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
MySQL distributions on Unix include a script named MariaDB distributions on Unix include a script named
\fBmysql\&.server\fR\&. It can be used on systems such as Linux and Solaris that use System V\-style run directories to start and stop system services\&. It is also used by the Mac OS X Startup Item for MySQL\&. \fBmysql\&.server\fR\&. It can be used on systems such as Linux and Solaris that use System V\-style run directories to start and stop system services\&. It is also used by the Mac OS X Startup Item for MariaDB\&.
.PP .PP
\fBmysql\&.server\fR \fBmysql\&.server\fR
can be found in the can be found in the
support\-files support\-files
directory under your MySQL installation directory or in a MySQL source distribution\&. directory under your MariaDB installation directory or in a MariaDB source distribution\&.
.PP .PP
If you use the Linux server RPM package (MySQL\-server\-\fIVERSION\fR\&.rpm), the If you use the Linux server RPM package (MySQL\-server\-\fIVERSION\fR\&.rpm), the
\fBmysql\&.server\fR \fBmysql\&.server\fR
script will be installed in the script will be installed in the
/etc/init\&.d /etc/init\&.d
directory with the name directory with the name
mysql\&. You need not install it manually\&. See mysql\&. You need not install it manually\&.
Section\ \&2.6.1, \(lqInstalling MySQL from RPM Packages on Linux\(rq, for more information on the Linux RPM packages\&.
.PP .PP
Some vendors provide RPM packages that install a startup script under a different name such as Some vendors provide RPM packages that install a startup script under a different name such as
\fBmysqld\fR\&. \fBmysqld\fR\&.
.PP .PP
If you install MySQL from a source distribution or using a binary distribution format that does not install If you install MariaDB from a source distribution or using a binary distribution format that does not install
\fBmysql\&.server\fR \fBmysql\&.server\fR
automatically, you can install it manually\&. Instructions are provided in automatically, you can install it manually\&.
Section\ \&2.13.1.2, \(lqStarting and Stopping MySQL Automatically\(rq\&.
.PP .PP
\fBmysql\&.server\fR \fBmysql\&.server\fR
reads options from the reads options from the
...@@ -58,8 +49,7 @@ and ...@@ -58,8 +49,7 @@ and
sections of option files\&. For backward compatibility, it also reads sections of option files\&. For backward compatibility, it also reads
[mysql_server] [mysql_server]
sections, although you should rename such sections to sections, although you should rename such sections to
[mysql\&.server] [mysql\&.server]&.
when using MySQL 5\&.1\&.
.PP .PP
\fBmysql\&.server\fR \fBmysql\&.server\fR
supports the following options\&. supports the following options\&.
...@@ -76,7 +66,7 @@ supports the following options\&. ...@@ -76,7 +66,7 @@ supports the following options\&.
.\" basedir option: mysql.server .\" basedir option: mysql.server
\fB\-\-basedir=\fR\fB\fIpath\fR\fR \fB\-\-basedir=\fR\fB\fIpath\fR\fR
.sp .sp
The path to the MySQL installation directory\&. The path to the MariaDB installation directory\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -91,7 +81,7 @@ The path to the MySQL installation directory\&. ...@@ -91,7 +81,7 @@ The path to the MySQL installation directory\&.
.\" datadir option: mysql.server .\" datadir option: mysql.server
\fB\-\-datadir=\fR\fB\fIpath\fR\fR \fB\-\-datadir=\fR\fB\fIpath\fR\fR
.sp .sp
The path to the MySQL data directory\&. The path to the MariaDB data directory\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -106,7 +96,7 @@ The path to the MySQL data directory\&. ...@@ -106,7 +96,7 @@ The path to the MySQL data directory\&.
.\" pid-file option: mysql.server .\" pid-file option: mysql.server
\fB\-\-pid\-file=\fR\fB\fIfile_name\fR\fR \fB\-\-pid\-file=\fR\fB\fIfile_name\fR\fR
.sp .sp
The path name of the file in which the server should write its process ID\&. The path name of the file in which the server should write its process ID\&. If not provided, the default, "host_name.pid" is used.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -123,7 +113,7 @@ The path name of the file in which the server should write its process ID\&. ...@@ -123,7 +113,7 @@ The path name of the file in which the server should write its process ID\&.
.sp .sp
How long in seconds to wait for confirmation of server startup\&. If the server does not start within this time, How long in seconds to wait for confirmation of server startup\&. If the server does not start within this time,
\fBmysql\&.server\fR \fBmysql\&.server\fR
exits with an error\&. The default value is 900\&. A value of 0 means not to wait at all for startup\&. Negative values mean to wait forever (no timeout)\&. This option was added in MySQL 5\&.1\&.17\&. Before that, a value of 900 is always used\&. exits with an error\&. The default value is 900\&. A value of 0 means not to wait at all for startup\&. Negative values mean to wait forever (no timeout)\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -176,7 +166,7 @@ The login user name to use for running ...@@ -176,7 +166,7 @@ The login user name to use for running
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -185,8 +175,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -185,8 +175,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_client_test\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 03/31/2010
.\" Manual: MySQL Database System
.\" Source: MySQL
.\" Language: English
.\" .\"
.TH "\FBMYSQL_CLIENT_TEST" "1" "03/31/2010" "MySQL" "MySQL Database System" .TH "\FBMYSQL_CLIENT_TEST" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -33,7 +26,7 @@ mysql_client_test_embedded \- test client API for embedded server ...@@ -33,7 +26,7 @@ mysql_client_test_embedded \- test client API for embedded server
.PP .PP
The The
\fBmysql_client_test\fR \fBmysql_client_test\fR
program is used for testing aspects of the MySQL client API that cannot be tested using program is used for testing aspects of the MariaDB client API that cannot be tested using
\fBmysqltest\fR \fBmysqltest\fR
and its test language\&. and its test language\&.
\fBmysql_client_test_embedded\fR \fBmysql_client_test_embedded\fR
...@@ -128,7 +121,7 @@ The database to use\&. ...@@ -128,7 +121,7 @@ The database to use\&.
\fB\-\-debug[=\fR\fB\fIdebug_options\fR\fR\fB]\fR, \fB\-\-debug[=\fR\fB\fIdebug_options\fR\fR\fB]\fR,
\fB\-#[\fR\fB\fIdebug_options\fR\fR\fB]\fR \fB\-#[\fR\fB\fIdebug_options\fR\fR\fB]\fR
.sp .sp
Write a debugging log if MySQL is built with debugging support\&. The default Write a debugging log if MariaDB is built with debugging support\&. The default
\fIdebug_options\fR \fIdebug_options\fR
value is value is
\'d:t:o,/tmp/mysql_client_test\&.trace\'\&. \'d:t:o,/tmp/mysql_client_test\&.trace\'\&.
...@@ -165,7 +158,7 @@ library\&. ...@@ -165,7 +158,7 @@ library\&.
\fB\-\-host=\fR\fB\fIhost_name\fR\fR, \fB\-\-host=\fR\fB\fIhost_name\fR\fR,
\fB\-h \fR\fB\fIhost_name\fR\fR \fB\-h \fR\fB\fIhost_name\fR\fR
.sp .sp
Connect to the MySQL server on the given host\&. Connect to the MariaDB server on the given host\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -304,7 +297,7 @@ may optionally behave in a different way than if called manually, for example by ...@@ -304,7 +297,7 @@ may optionally behave in a different way than if called manually, for example by
\fB\-\-user=\fR\fB\fIuser_name\fR\fR, \fB\-\-user=\fR\fB\fIuser_name\fR\fR,
\fB\-u \fR\fB\fIuser_name\fR\fR \fB\-u \fR\fB\fIuser_name\fR\fR
.sp .sp
The MySQL user name to use when connecting to the server\&. The MariaDB user name to use when connecting to the server\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -326,7 +319,7 @@ mysql\-test/var\&. ...@@ -326,7 +319,7 @@ mysql\-test/var\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright \(co 2007, 2010, Oracle and/or its affiliates Copyright \(co 2007, 2010, Oracle and/or its affiliates, 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -335,8 +328,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -335,8 +328,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_config\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_CONFIG\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_CONFIG\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -27,7 +20,7 @@ mysql_config \- get compile options for compiling clients ...@@ -27,7 +20,7 @@ mysql_config \- get compile options for compiling clients
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
\fBmysql_config\fR \fBmysql_config\fR
provides you with useful information for compiling your MySQL client and connecting it to MySQL\&. provides you with useful information for compiling your MariaDB client and connecting it to MariaDB\&.
.PP .PP
\fBmysql_config\fR \fBmysql_config\fR
supports the following options\&. supports the following options\&.
...@@ -63,7 +56,7 @@ for more portable options that contain only include paths\&. ...@@ -63,7 +56,7 @@ for more portable options that contain only include paths\&.
.\" include option: mysql_config .\" include option: mysql_config
\fB\-\-include\fR \fB\-\-include\fR
.sp .sp
Compiler options to find MySQL include files\&. Compiler options to find MariaDB include files\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -81,7 +74,7 @@ Compiler options to find MySQL include files\&. ...@@ -81,7 +74,7 @@ Compiler options to find MySQL include files\&.
\fB\-\-libmysqld\-libs\fR, \fB\-\-libmysqld\-libs\fR,
\fB\-\-embedded\fR \fB\-\-embedded\fR
.sp .sp
Libraries and options required to link with the MySQL embedded server\&. Libraries and options required to link with the MariaDB embedded server\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -96,7 +89,7 @@ Libraries and options required to link with the MySQL embedded server\&. ...@@ -96,7 +89,7 @@ Libraries and options required to link with the MySQL embedded server\&.
.\" libs option: mysql_config .\" libs option: mysql_config
\fB\-\-libs\fR \fB\-\-libs\fR
.sp .sp
Libraries and options required to link with the MySQL client library\&. Libraries and options required to link with the MariaDB client library\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -111,7 +104,7 @@ Libraries and options required to link with the MySQL client library\&. ...@@ -111,7 +104,7 @@ Libraries and options required to link with the MySQL client library\&.
.\" libs_r option: mysql_config .\" libs_r option: mysql_config
\fB\-\-libs_r\fR \fB\-\-libs_r\fR
.sp .sp
Libraries and options required to link with the thread\-safe MySQL client library\&. Libraries and options required to link with the thread\-safe MariaDB client library\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -126,7 +119,7 @@ Libraries and options required to link with the thread\-safe MySQL client librar ...@@ -126,7 +119,7 @@ Libraries and options required to link with the thread\-safe MySQL client librar
.\" plugindir option: mysql_config .\" plugindir option: mysql_config
\fB\-\-plugindir\fR \fB\-\-plugindir\fR
.sp .sp
The default plugin directory path name, defined when configuring MySQL\&. This option was added in MySQL 5\&.1\&.24\&. The default plugin directory path name, defined when configuring MariaDB\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -141,7 +134,7 @@ The default plugin directory path name, defined when configuring MySQL\&. This o ...@@ -141,7 +134,7 @@ The default plugin directory path name, defined when configuring MySQL\&. This o
.\" port option: mysql_config .\" port option: mysql_config
\fB\-\-port\fR \fB\-\-port\fR
.sp .sp
The default TCP/IP port number, defined when configuring MySQL\&. The default TCP/IP port number, defined when configuring MariaDB\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -156,7 +149,7 @@ The default TCP/IP port number, defined when configuring MySQL\&. ...@@ -156,7 +149,7 @@ The default TCP/IP port number, defined when configuring MySQL\&.
.\" socket option: mysql_config .\" socket option: mysql_config
\fB\-\-socket\fR \fB\-\-socket\fR
.sp .sp
The default Unix socket file, defined when configuring MySQL\&. The default Unix socket file, defined when configuring MariaDB\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -171,7 +164,7 @@ The default Unix socket file, defined when configuring MySQL\&. ...@@ -171,7 +164,7 @@ The default Unix socket file, defined when configuring MySQL\&.
.\" variable option: mysql_config .\" variable option: mysql_config
\fB\-\-variable=VAR\fR \fB\-\-variable=VAR\fR
.sp .sp
Path to MySQL include, library and plugin directories\&. \fBVAR\fR is one of Path to MariaDB include, library and plugin directories\&. \fBVAR\fR is one of
`pkgincludedir`, `pkglibdir` and `plugindir`, respectively\&. `pkgincludedir`, `pkglibdir` and `plugindir`, respectively\&.
.RE .RE
.sp .sp
...@@ -187,7 +180,7 @@ Path to MySQL include, library and plugin directories\&. \fBVAR\fR is one of ...@@ -187,7 +180,7 @@ Path to MySQL include, library and plugin directories\&. \fBVAR\fR is one of
.\" version option: mysql_config .\" version option: mysql_config
\fB\-\-version\fR \fB\-\-version\fR
.sp .sp
Version number for the MySQL distribution\&. Version number for the MariaDB distribution\&.
.RE .RE
.PP .PP
If you invoke If you invoke
...@@ -219,7 +212,7 @@ Options: ...@@ -219,7 +212,7 @@ Options:
.PP .PP
You can use You can use
\fBmysql_config\fR \fBmysql_config\fR
within a command line to include the value that it displays for a particular option\&. For example, to compile a MySQL client program, use within a command line to include the value that it displays for a particular option\&. For example, to compile a MariaDB client program, use
\fBmysql_config\fR \fBmysql_config\fR
as follows: as follows:
.sp .sp
...@@ -240,7 +233,7 @@ this way, be sure to invoke it within backtick (\(lq`\(rq) characters\&. That te ...@@ -240,7 +233,7 @@ this way, be sure to invoke it within backtick (\(lq`\(rq) characters\&. That te
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -249,8 +242,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -249,8 +242,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_convert_table_format\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_CONVERT_TAB" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_CONVERT_TAB" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -100,7 +93,7 @@ Continue even if errors occur\&. ...@@ -100,7 +93,7 @@ Continue even if errors occur\&.
.\" host option: mysql_convert_table_format .\" host option: mysql_convert_table_format
\fB\-\-host=\fR\fB\fIhost_name\fR\fR \fB\-\-host=\fR\fB\fIhost_name\fR\fR
.sp .sp
Connect to the MySQL server on the given host\&. Connect to the MariaDB server on the given host\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -115,10 +108,9 @@ Connect to the MySQL server on the given host\&. ...@@ -115,10 +108,9 @@ Connect to the MySQL server on the given host\&.
.\" password option: mysql_convert_table_format .\" password option: mysql_convert_table_format
\fB\-\-password=\fR\fB\fIpassword\fR\fR \fB\-\-password=\fR\fB\fIpassword\fR\fR
.sp .sp
The password to use when connecting to the server\&. Note that the password value is not optional for this option, unlike for other MySQL programs\&. The password to use when connecting to the server\&. Note that the password value is not optional for this option, unlike for other MariaDB programs\&.
.sp .sp
Specifying a password on the command line should be considered insecure\&. See Specifying a password on the command line should be considered insecure\&. You can use an option file to avoid giving the password on the command line\&.
Section\ \&5.3.2.2, \(lqEnd-User Guidelines for Password Security\(rq\&. You can use an option file to avoid giving the password on the command line\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -181,7 +173,7 @@ if this option is not given\&. ...@@ -181,7 +173,7 @@ if this option is not given\&.
.\" user option: mysql_convert_table_format .\" user option: mysql_convert_table_format
\fB\-\-user=\fR\fB\fIuser_name\fR\fR \fB\-\-user=\fR\fB\fIuser_name\fR\fR
.sp .sp
The MySQL user name to use when connecting to the server\&. The MariaDB user name to use when connecting to the server\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -216,7 +208,7 @@ Display version information and exit\&. ...@@ -216,7 +208,7 @@ Display version information and exit\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -225,8 +217,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -225,8 +217,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_find_rows\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_FIND_ROWS\F" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_FIND_ROWS\F" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -151,7 +144,7 @@ Start output from this row\&. ...@@ -151,7 +144,7 @@ Start output from this row\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -160,8 +153,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -160,8 +153,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_fix_extensions\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_FIX_EXTENSI" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_FIX_EXTENSI" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -61,7 +54,7 @@ shell> \fBmysql_fix_extensions \fR\fB\fIdata_dir\fR\fR ...@@ -61,7 +54,7 @@ shell> \fBmysql_fix_extensions \fR\fB\fIdata_dir\fR\fR
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -70,8 +63,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -70,8 +63,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_install_db\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_INSTALL_DB\" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_INSTALL_DB\" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -20,14 +13,14 @@ ...@@ -20,14 +13,14 @@
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" mysql_install_db .\" mysql_install_db
.SH "NAME" .SH "NAME"
mysql_install_db \- initialize MySQL data directory mysql_install_db \- initialize MariaDB data directory
.SH "SYNOPSIS" .SH "SYNOPSIS"
.HP \w'\fBmysql_install_db\ [\fR\fB\fIoptions\fR\fR\fB]\fR\ 'u .HP \w'\fBmysql_install_db\ [\fR\fB\fIoptions\fR\fR\fB]\fR\ 'u
\fBmysql_install_db [\fR\fB\fIoptions\fR\fR\fB]\fR \fBmysql_install_db [\fR\fB\fIoptions\fR\fR\fB]\fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
\fBmysql_install_db\fR \fBmysql_install_db\fR
initializes the MySQL data directory and creates the system tables that it contains, if they do not exist\&. initializes the MariaDB data directory and creates the system tables that it contains, if they do not exist\&.
.PP .PP
To invoke To invoke
\fBmysql_install_db\fR, use the following syntax: \fBmysql_install_db\fR, use the following syntax:
...@@ -42,7 +35,7 @@ shell> \fBmysql_install_db [\fR\fB\fIoptions\fR\fR\fB]\fR ...@@ -42,7 +35,7 @@ shell> \fBmysql_install_db [\fR\fB\fIoptions\fR\fR\fB]\fR
.RE .RE
.\} .\}
.PP .PP
Because the MySQL server, Because the MariaDB server,
\fBmysqld\fR, needs to access the data directory when it runs later, you should either run \fBmysqld\fR, needs to access the data directory when it runs later, you should either run
\fBmysql_install_db\fR \fBmysql_install_db\fR
from the same account that will be used for running from the same account that will be used for running
...@@ -81,7 +74,7 @@ with the ...@@ -81,7 +74,7 @@ with the
and and
\fB\-\-skip\-grant\-tables\fR \fB\-\-skip\-grant\-tables\fR
options (see options (see
Section\ \&2.3.2, \(lqTypical configure Options\(rq)\&. If MySQL was configured with the Section\ \&2.3.2, \(lqTypical configure Options\(rq)\&. If MariaDB was configured with the
\fB\-\-disable\-grant\-options\fR \fB\-\-disable\-grant\-options\fR
option, option,
\fB\-\-bootstrap\fR \fB\-\-bootstrap\fR
...@@ -113,7 +106,7 @@ option file groups\&. ...@@ -113,7 +106,7 @@ option file groups\&.
.\" basedir option: mysql_install_db .\" basedir option: mysql_install_db
\fB\-\-basedir=\fR\fB\fIpath\fR\fR \fB\-\-basedir=\fR\fB\fIpath\fR\fR
.sp .sp
The path to the MySQL installation directory\&. The path to the MariaDB installation directory\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -124,13 +117,27 @@ The path to the MySQL installation directory\&. ...@@ -124,13 +117,27 @@ The path to the MySQL installation directory\&.
.sp -1 .sp -1
.IP \(bu 2.3 .IP \(bu 2.3
.\} .\}
.\" mysql_install_db: force option .\" mysql_install_db: builddir option
.\" force option: mysql_install_db .\" builddir option: mysql_install_db
\fB\-\-force\fR \fB\-\-builddir=\fIpath\fR
.sp .sp
Cause If using \fB--srcdir\fR with out-of-directory builds, you will need to set this
\fBmysql_install_db\fR to the location of the build directory where built files reside.\&.
to run even if DNS does not work\&. In that case, grant table entries that normally use host names will use IP addresses\&. .RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysql_install_db: cross-bootstrap option
.\" cross-bootstrap option: mysql_install_db
\fB\-\-cross\-bootstrap\fR
.sp
For internal use. Used when building the MariaDB system tables on a different host than the target.\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -148,7 +155,102 @@ to run even if DNS does not work\&. In that case, grant table entries that norma ...@@ -148,7 +155,102 @@ to run even if DNS does not work\&. In that case, grant table entries that norma
\fB\-\-datadir=\fR\fB\fIpath\fR\fR, \fB\-\-datadir=\fR\fB\fIpath\fR\fR,
\fB\-\-ldata=\fR\fB\fIpath\fR\fR \fB\-\-ldata=\fR\fB\fIpath\fR\fR
.sp .sp
The path to the MySQL data directory\&. The path to the MariaDB data directory\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysqlcheck: defaults-extra-file option
.\" defaults-extra-file option: mysqlcheck
\fB\-\-defaults\-extra\-file=\fR\fB\fIfilename\fR\fR
.sp
Set \fB\fIfilename\fR\fR as the file to read default options from after the global defaults files has been read\&.
Must be given as first option\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysqlcheck: defaults-file option
.\" defaults-file option: mysqlcheck
\fB\-\-defaults\-file=\fR\fB\fIfilename\fR\fR
.sp
Set \fB\fIfilename\fR\fR as the file to read default options from, override global defaults files\&.
Must be given as first option\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysql_install_db: force option
.\" force option: mysql_install_db
\fB\-\-force\fR
.sp
Cause
\fBmysql_install_db\fR
to run even if DNS does not work\&. In that case, grant table entries that normally use host names will use IP addresses\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysqlcheck: help option
.\" help option: mysqlcheck
\fB\-\-help\fR
.sp
Display a help message and exit\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysqlcheck: no-defaults option
.\" no-defaults option: mysqlcheck
\fB\-\-no\-defaults\fR
.sp
Do not read default options from any option file\&. This must be given as the first argument\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
.\" mysqlcheck: print-defaults option
.\" print-defaults option: mysqlcheck
\fB\-\-print\-defaults\fR
.sp
Print the program argument list and exit\&.
This must be given as the first argument\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -163,7 +265,7 @@ The path to the MySQL data directory\&. ...@@ -163,7 +265,7 @@ The path to the MySQL data directory\&.
.\" rpm option: mysql_install_db .\" rpm option: mysql_install_db
\fB\-\-rpm\fR \fB\-\-rpm\fR
.sp .sp
For internal use\&. This option is used by RPM files during the MySQL installation process\&. For internal use\&. This option is used by RPM files during the MariaDB installation process\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -195,7 +297,7 @@ Use IP addresses rather than host names when creating grant table entries\&. Thi ...@@ -195,7 +297,7 @@ Use IP addresses rather than host names when creating grant table entries\&. Thi
.sp .sp
For internal use\&. The directory under which For internal use\&. The directory under which
\fBmysql_install_db\fR \fBmysql_install_db\fR
looks for support files such as the error message file and the file for populating the help tables\&. This option was added in MySQL 5\&.1\&.14\&. looks for support files such as the error message file and the file for populating the help tables\&.4\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -252,7 +354,7 @@ For internal use\&. This option is used for creating Windows distributions\&. ...@@ -252,7 +354,7 @@ For internal use\&. This option is used for creating Windows distributions\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -261,8 +363,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -261,8 +363,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_plugin\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.77.1 <http://docbook.sf.net/>
.\" Date: 01/16/2013
.\" Manual: MySQL Database System
.\" Source: MySQL 5.5
.\" Language: English
.\" .\"
.TH "\FBMYSQL_PLUGIN\FR" "1" "01/16/2013" "MySQL 5\&.5" "MySQL Database System" .TH "\FBMYSQL_PLUGIN\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -29,7 +22,7 @@ ...@@ -29,7 +22,7 @@
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" mysql_plugin .\" mysql_plugin
.SH "NAME" .SH "NAME"
mysql_plugin \- configure MySQL server plugins mysql_plugin \- configure MariaDB server plugins
.SH "SYNOPSIS" .SH "SYNOPSIS"
.HP \w'\fBmysql_plugin\ [\fR\fB\fIoptions\fR\fR\fB]\ \fR\fB\fIplugin\fR\fR\fB\ {ENABLE|DISABLE}\fR\ 'u .HP \w'\fBmysql_plugin\ [\fR\fB\fIoptions\fR\fR\fB]\ \fR\fB\fIplugin\fR\fR\fB\ {ENABLE|DISABLE}\fR\ 'u
\fBmysql_plugin [\fR\fB\fIoptions\fR\fR\fB] \fR\fB\fIplugin\fR\fR\fB {ENABLE|DISABLE}\fR \fBmysql_plugin [\fR\fB\fIoptions\fR\fR\fB] \fR\fB\fIplugin\fR\fR\fB {ENABLE|DISABLE}\fR
...@@ -37,15 +30,13 @@ mysql_plugin \- configure MySQL server plugins ...@@ -37,15 +30,13 @@ mysql_plugin \- configure MySQL server plugins
.PP .PP
The The
\fBmysql_plugin\fR \fBmysql_plugin\fR
utility enables MySQL administrators to manage which plugins a MySQL server loads\&. It provides an alternative to manually specifying the utility enables MariaDB administrators to manage which plugins a MariaDB server loads\&. It provides an alternative to manually specifying the
\fB\-\-plugin\-load\fR \fB\-\-plugin\-load\fR
option at server startup or using the option at server startup or using the
INSTALL PLUGIN INSTALL PLUGIN
and and
UNINSTALL PLUGIN UNINSTALL PLUGIN
statements at runtime\&. statements at runtime\&.
\fBmysql_plugin\fR
is available as of MySQL 5\&.5\&.16\&.
.PP .PP
Depending on whether Depending on whether
\fBmysql_plugin\fR \fBmysql_plugin\fR
...@@ -53,12 +44,11 @@ is invoked to enable or disable plugins, it inserts or deletes rows in the ...@@ -53,12 +44,11 @@ is invoked to enable or disable plugins, it inserts or deletes rows in the
mysql\&.plugin mysql\&.plugin
table that serves as a plugin registry\&. (To perform this operation, table that serves as a plugin registry\&. (To perform this operation,
\fBmysql_plugin\fR \fBmysql_plugin\fR
invokes the MySQL server in bootstrap mode\&. This means that the server must not already be running\&.) For normal server startups, the server loads and enables plugins listed in invokes the MariaDB server in bootstrap mode\&. This means that the server must not already be running\&.) For normal server startups, the server loads and enables plugins listed in
mysql\&.plugin mysql\&.plugin
automatically\&. For additional control over plugin activation, use automatically\&. For additional control over plugin activation, use
\fB\-\-\fR\fB\fIplugin_name\fR\fR \fB\-\-\fR\fB\fIplugin_name\fR\fR
options named for specific plugins, as described in options named for specific plugins\&.
Section\ \&5.1.8.1, \(lqInstalling and Uninstalling Plugins\(rq\&.
.PP .PP
Each invocation of Each invocation of
\fBmysql_plugin\fR \fBmysql_plugin\fR
...@@ -150,7 +140,7 @@ An error occurs if ...@@ -150,7 +140,7 @@ An error occurs if
\fBmysql_plugin\fR \fBmysql_plugin\fR
cannot find the configuration file or plugin library file, or if cannot find the configuration file or plugin library file, or if
\fBmysql_plugin\fR \fBmysql_plugin\fR
cannot start the MySQL server\&. cannot start the MariaDB server\&.
.PP .PP
\fBmysql_plugin\fR \fBmysql_plugin\fR
supports the following options, which can be specified on the command line or in the supports the following options, which can be specified on the command line or in the
...@@ -163,8 +153,7 @@ recognizes the ...@@ -163,8 +153,7 @@ recognizes the
\fB\-\-basedir\fR, \fB\-\-basedir\fR,
\fB\-\-datadir\fR, and \fB\-\-datadir\fR, and
\fB\-\-plugin\-dir\fR \fB\-\-plugin\-dir\fR
options and ignores others\&. For information about option files, see options and ignores others\&.
Section\ \&4.2.3.3, \(lqUsing Option Files\(rq\&.
.PP .PP
mysql_plugin Options mysql_plugin Options
.sp .sp
...@@ -268,7 +257,7 @@ server\&. ...@@ -268,7 +257,7 @@ server\&.
Do not read values from the configuration file\&. This option enables an administrator to skip reading defaults from the configuration file\&. Do not read values from the configuration file\&. This option enables an administrator to skip reading defaults from the configuration file\&.
.sp .sp
With With
\fBmysql_plugin\fR, this option need not be given first on the command line, unlike most other MySQL programs that support \fBmysql_plugin\fR, this option need not be given first on the command line, unlike most other MariaDB programs that support
\fB\-\-no\-defaults\fR\&. \fB\-\-no\-defaults\fR\&.
.RE .RE
.sp .sp
...@@ -334,7 +323,7 @@ to print the defaults for ...@@ -334,7 +323,7 @@ to print the defaults for
if they are found in the configuration file\&. If no value for a variable is found, nothing is shown\&. if they are found in the configuration file\&. If no value for a variable is found, nothing is shown\&.
.sp .sp
With With
\fBmysql_plugin\fR, this option need not be given first on the command line, unlike most other MySQL programs that support \fBmysql_plugin\fR, this option need not be given first on the command line, unlike most other MariaDB programs that support
\fB\-\-print\-defaults\fR\&. \fB\-\-print\-defaults\fR\&.
.RE .RE
.sp .sp
...@@ -372,7 +361,7 @@ Display version information and exit\&. ...@@ -372,7 +361,7 @@ Display version information and exit\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright \(co 1997, 2013, Oracle and/or its affiliates. All rights reserved. Copyright \(co 1997, 2013, Oracle and/or its affiliates. All rights reserved., 2013-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -381,8 +370,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -381,8 +370,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Oracle Corporation (http://dev.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_secure_installation\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_SECURE_INST" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_SECURE_INST" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -20,13 +13,13 @@ ...@@ -20,13 +13,13 @@
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" mysql_secure_installation .\" mysql_secure_installation
.SH "NAME" .SH "NAME"
mysql_secure_installation \- improve MySQL installation security mysql_secure_installation \- improve MariaDB installation security
.SH "SYNOPSIS" .SH "SYNOPSIS"
.HP \w'\fBmysql_secure_installation\fR\ 'u .HP \w'\fBmysql_secure_installation\fR\ 'u
\fBmysql_secure_installation\fR \fBmysql_secure_installation\fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
This program enables you to improve the security of your MySQL installation in the following ways: This program enables you to improve the security of your MariaDB installation in the following ways:
.sp .sp
.RS 4 .RS 4
.ie n \{\ .ie n \{\
...@@ -96,7 +89,7 @@ The script will prompt you to determine which actions to perform\&. ...@@ -96,7 +89,7 @@ The script will prompt you to determine which actions to perform\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -105,8 +98,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -105,8 +98,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_setpermission\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_SETPERMISSI" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_SETPERMISSI" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -27,14 +20,13 @@ mysql_setpermission \- interactively set permissions in grant tables ...@@ -27,14 +20,13 @@ mysql_setpermission \- interactively set permissions in grant tables
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
\fBmysql_setpermission\fR \fBmysql_setpermission\fR
is a Perl script that was originally written and contributed by Luuk de Boer\&. It interactively sets permissions in the MySQL grant tables\&. is a Perl script that was originally written and contributed by Luuk de Boer\&. It interactively sets permissions in the MariaDB grant tables\&.
\fBmysql_setpermission\fR \fBmysql_setpermission\fR
is written in Perl and requires that the is written in Perl and requires that the
DBI DBI
and and
DBD::mysql DBD::mysql
Perl modules be installed (see Perl modules be installed\&.
Section\ \&2.15, \(lqPerl Installation Notes\(rq)\&.
.PP .PP
Invoke Invoke
\fBmysql_setpermission\fR \fBmysql_setpermission\fR
...@@ -53,9 +45,9 @@ shell> \fBmysql_setpermission [\fR\fB\fIoptions\fR\fR\fB]\fR ...@@ -53,9 +45,9 @@ shell> \fBmysql_setpermission [\fR\fB\fIoptions\fR\fR\fB]\fR
\fIoptions\fR \fIoptions\fR
should be either should be either
\fB\-\-help\fR \fB\-\-help\fR
to display the help message, or options that indicate how to connect to the MySQL server\&. The account used when you connect determines which permissions you have when attempting to modify existing permissions in the grant tables\&. to display the help message, or options that indicate how to connect to the MariaDB server\&. The account used when you connect determines which permissions you have when attempting to modify existing permissions in the grant tables\&.
.PP .PP
\fBmysql_setpermissions\fR \fBmysql_setpermission\fR
also reads options from the also reads options from the
[client] [client]
and and
...@@ -94,7 +86,7 @@ Display a help message and exit\&. ...@@ -94,7 +86,7 @@ Display a help message and exit\&.
.\" host option: mysql_setpermission .\" host option: mysql_setpermission
\fB\-\-host=\fR\fB\fIhost_name\fR\fR \fB\-\-host=\fR\fB\fIhost_name\fR\fR
.sp .sp
Connect to the MySQL server on the given host\&. Connect to the MariaDB server on the given host\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -109,10 +101,9 @@ Connect to the MySQL server on the given host\&. ...@@ -109,10 +101,9 @@ Connect to the MySQL server on the given host\&.
.\" password option: mysql_setpermission .\" password option: mysql_setpermission
\fB\-\-password=\fR\fB\fIpassword\fR\fR \fB\-\-password=\fR\fB\fIpassword\fR\fR
.sp .sp
The password to use when connecting to the server\&. Note that the password value is not optional for this option, unlike for other MySQL programs\&. The password to use when connecting to the server\&. Note that the password value is not optional for this option, unlike for other MariaDB programs\&.
.sp .sp
Specifying a password on the command line should be considered insecure\&. See Specifying a password on the command line should be considered insecure\&. You can use an option file to avoid giving the password on the command line\&.
Section\ \&5.3.2.2, \(lqEnd-User Guidelines for Password Security\(rq\&. You can use an option file to avoid giving the password on the command line\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -158,12 +149,12 @@ localhost, the Unix socket file to use\&. ...@@ -158,12 +149,12 @@ localhost, the Unix socket file to use\&.
.\" user option: mysql_setpermission .\" user option: mysql_setpermission
\fB\-\-user=\fR\fB\fIuser_name\fR\fR \fB\-\-user=\fR\fB\fIuser_name\fR\fR
.sp .sp
The MySQL user name to use when connecting to the server\&. The MariaDB user name to use when connecting to the server\&.
.RE .RE
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -172,8 +163,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -172,8 +163,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_tzinfo_to_sql\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_TZINFO_TO_S" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_TZINFO_TO_S" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -36,8 +29,7 @@ zoneinfo ...@@ -36,8 +29,7 @@ zoneinfo
database (the set of files describing time zones)\&. Examples of such systems are Linux, FreeBSD, Solaris, and Mac OS X\&. One likely location for these files is the database (the set of files describing time zones)\&. Examples of such systems are Linux, FreeBSD, Solaris, and Mac OS X\&. One likely location for these files is the
/usr/share/zoneinfo /usr/share/zoneinfo
directory (/usr/share/lib/zoneinfo directory (/usr/share/lib/zoneinfo
on Solaris)\&. If your system does not have a zoneinfo database, you can use the downloadable package described in on Solaris)\&.
Section\ \&9.6, \(lqMySQL Server Time Zone Support\(rq\&.
.PP .PP
\fBmysql_tzinfo_to_sql\fR \fBmysql_tzinfo_to_sql\fR
can be invoked several ways: can be invoked several ways:
...@@ -113,7 +105,7 @@ After running ...@@ -113,7 +105,7 @@ After running
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -122,8 +114,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -122,8 +114,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
'\" t '\" t
.\" Title: \fBmysql_waitpid\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_WAITPID\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_WAITPID\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -120,7 +113,7 @@ Display version information and exit\&. ...@@ -120,7 +113,7 @@ Display version information and exit\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -129,8 +122,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -129,8 +122,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysql_zap\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQL_ZAP\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQL_ZAP\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -116,7 +109,7 @@ Test mode\&. Display information about each process but do not kill it\&. ...@@ -116,7 +109,7 @@ Test mode\&. Display information about each process but do not kill it\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -125,8 +118,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -125,8 +118,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
'\" t '\" t
.\" Title: \fBmysqlaccess\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQLACCESS\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQLACCESS\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -27,7 +20,7 @@ mysqlaccess \- client for checking access privileges ...@@ -27,7 +20,7 @@ mysqlaccess \- client for checking access privileges
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
\fBmysqlaccess\fR \fBmysqlaccess\fR
is a diagnostic tool that Yves Carlier has provided for the MySQL distribution\&. It checks the access privileges for a host name, user name, and database combination\&. Note that is a diagnostic tool written by Yves Carlier\&. It checks the access privileges for a host name, user name, and database combination\&. Note that
\fBmysqlaccess\fR \fBmysqlaccess\fR
checks access using only the checks access using only the
user, user,
...@@ -197,9 +190,8 @@ Display some examples that show how to use ...@@ -197,9 +190,8 @@ Display some examples that show how to use
.\" old_server option: mysqlaccess .\" old_server option: mysqlaccess
\fB\-\-old_server\fR \fB\-\-old_server\fR
.sp .sp
Assume that the server is an old MySQL server (before MySQL 3\&.21) that does not yet know how to handle full Connect to a very old MySQL server (before MySQL 3\&.21) that does not know how to handle full
WHERE WHERE clauses\&.
clauses\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -287,7 +279,7 @@ Display the release notes\&. ...@@ -287,7 +279,7 @@ Display the release notes\&.
\fB\-\-rhost=\fR\fB\fIhost_name\fR\fR, \fB\-\-rhost=\fR\fB\fIhost_name\fR\fR,
\fB\-H \fR\fB\fIhost_name\fR\fR \fB\-H \fR\fB\fIhost_name\fR\fR
.sp .sp
Connect to the MySQL server on the given host\&. Connect to the MariaDB server on the given host\&.
.RE .RE
.sp .sp
.RS 4 .RS 4
...@@ -396,7 +388,7 @@ The user name to use in the access privileges\&. ...@@ -396,7 +388,7 @@ The user name to use in the access privileges\&.
Display version information and exit\&. Display version information and exit\&.
.RE .RE
.PP .PP
If your MySQL distribution is installed in some nonstandard location, you must change the location where If your MariaDB distribution is installed in some non\-standard location, you must change the location where
\fBmysqlaccess\fR \fBmysqlaccess\fR
expects to find the expects to find the
\fBmysql\fR \fBmysql\fR
...@@ -423,7 +415,7 @@ error will occur when you run ...@@ -423,7 +415,7 @@ error will occur when you run
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -432,8 +424,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -432,8 +424,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
This diff is collapsed.
'\" t '\" t
.\" Title: \fBmysqlbug\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQLBUG\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQLBUG\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -26,10 +19,12 @@ mysqlbug \- generate bug report ...@@ -26,10 +19,12 @@ mysqlbug \- generate bug report
\fBmysqlbug\fR \fBmysqlbug\fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
This program enables you to generate a bug report and send it to Oracle Corporation\&. It is a shell script and runs on Unix\&. To report MariaDB bugs, see https://mariadb.com/kb/en/mariadb/reporting-bugs/ - the mysqlbug program has now been deprecated by Oracle, and was never useful for MariaDB.
Originally, the program enabled you to generate a bug report and send it to Oracle Corporation\&. It is a shell script and runs on Unix\&.
.PP .PP
The normal way to report bugs is to visit The normal way to report MySQL bugs is to visit
\m[blue]\fB\%http://bugs.mysql.com/\fR\m[], which is the address for our bugs database\&. This database is public and can be browsed and searched by anyone\&. If you log in to the system, you can enter new reports\&. If you have no Web access, you can generate a bug report by using the \m[blue]\fB\%http://bugs.mysql.com/\fR\m[], which is the address for MySQL's bugs database\&. This database is public and can be browsed and searched by anyone\&. If you log in to the system, you can enter new reports\&. If you have no Web access, you can generate a bug report by using the
\fBmysqlbug\fR \fBmysqlbug\fR
script\&. script\&.
.PP .PP
...@@ -62,7 +57,7 @@ will send the report by email\&. ...@@ -62,7 +57,7 @@ will send the report by email\&.
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -71,8 +66,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -71,8 +66,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
'\" t '\" t
.\" Title: \fBmysqldumpslow\fR
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 04/06/2010
.\" Manual: MySQL Database System
.\" Source: MySQL 5.1
.\" Language: English
.\" .\"
.TH "\FBMYSQLDUMPSLOW\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System" .TH "\FBMYSQLDUMPSLOW\FR" "1" "04/08/2015" "MariaDB 10\&.0" "MariaDB Database System"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
...@@ -26,10 +19,9 @@ mysqldumpslow \- Summarize slow query log files ...@@ -26,10 +19,9 @@ mysqldumpslow \- Summarize slow query log files
\fBmysqldumpslow [\fR\fBoptions\fR\fB] [\fR\fB\fIlog_file\fR\fR\fB \&.\&.\&.]\fR \fBmysqldumpslow [\fR\fBoptions\fR\fB] [\fR\fB\fIlog_file\fR\fR\fB \&.\&.\&.]\fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
The MySQL slow query log contains information about queries that take a long time to execute (see The MariaDB slow query log contains information about queries that take a long time to execute\&.
Section\ \&5.2.5, \(lqThe Slow Query Log\(rq)\&.
\fBmysqldumpslow\fR \fBmysqldumpslow\fR
parses MySQL slow query log files and prints a summary of their contents\&. parses MariaDB slow query log files and prints a summary of their contents\&.
.PP .PP
Normally, Normally,
\fBmysqldumpslow\fR \fBmysqldumpslow\fR
...@@ -132,9 +124,9 @@ Consider only queries that match the (\fBgrep\fR\-style) pattern\&. ...@@ -132,9 +124,9 @@ Consider only queries that match the (\fBgrep\fR\-style) pattern\&.
.\} .\}
\fB\-h \fR\fB\fIhost_name\fR\fR \fB\-h \fR\fB\fIhost_name\fR\fR
.sp .sp
Host name of MySQL server for Host name of MariaDB server for
*\-slow\&.log *\-slow\&.log
file name\&. The value can contain a wildcare\&. The default is file name\&. The value can contain a wildcard\&. The default is
* *
(match all)\&. (match all)\&.
.RE .RE
...@@ -309,7 +301,7 @@ Count: 3 Time=2\&.13s (6s) Lock=0\&.00s (0s) Rows=0\&.0 (0), root[root]@local ...@@ -309,7 +301,7 @@ Count: 3 Time=2\&.13s (6s) Lock=0\&.00s (0s) Rows=0\&.0 (0), root[root]@local
.SH "COPYRIGHT" .SH "COPYRIGHT"
.br .br
.PP .PP
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc., 2010-2015 MariaDB Foundation
.PP .PP
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP .PP
...@@ -318,8 +310,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU ...@@ -318,8 +310,6 @@ This documentation is distributed in the hope that it will be useful, but WITHOU
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
.sp .sp
.SH "SEE ALSO" .SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual, For more information, please refer to the MariaDB Knowledge Base, available online at https://mariadb.com/kb/
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR .SH AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MariaDB Foundation (http://www.mariadb.org/).
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -11,9 +11,7 @@ ...@@ -11,9 +11,7 @@
############################################################################## ##############################################################################
tablespace : disabled in MariaDB (no TABLESPACE table attribute) tablespace : disabled in MariaDB (no TABLESPACE table attribute)
events_time_zone : Test is not predictable as it depends on precise timing. events_time_zone : Test is not predictable as it depends on precise timing.
lowercase_table3 : Bug#11762269 2010-06-30 alik main.lowercase_table3 on Mac OSX
read_many_rows_innodb : Bug#11748886 2010-11-15 mattiasj report already exists read_many_rows_innodb : Bug#11748886 2010-11-15 mattiasj report already exists
archive-big : Bug#11817185 2011-03-10 Anitha Disabled since this leads to timeout on Solaris Sparc
log_tables-big : Bug#11756699 2010-11-15 mattiasj report already exists log_tables-big : Bug#11756699 2010-11-15 mattiasj report already exists
mysql_embedded : Bug#12561297 2011-05-14 Anitha Dependent on PB2 changes - eventum#41836 mysql_embedded : Bug#12561297 2011-05-14 Anitha Dependent on PB2 changes - eventum#41836
#show_explain : Psergey: random timeout in range-checked-for-each record query. #show_explain : Psergey: random timeout in range-checked-for-each record query.
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment