37#ifndef MYSQL_ABI_CHECK
49#ifndef my_socket_defined
54#ifndef MYSQL_ABI_CHECK
58#define SYSTEM_CHARSET_MBMAXLEN 3
59#define FILENAME_CHARSET_MBMAXLEN 5
60#define NAME_CHAR_LEN 64
61#define PARTITION_EXPR_CHAR_LEN \
64#define USERNAME_CHAR_LENGTH 32
65#define USERNAME_CHAR_LENGTH_STR "32"
67#define NAME_LEN (NAME_CHAR_LEN * SYSTEM_CHARSET_MBMAXLEN)
69#define USERNAME_LENGTH (USERNAME_CHAR_LENGTH * SYSTEM_CHARSET_MBMAXLEN)
70#define CONNECT_STRING_MAXLEN 1024
72#define MYSQL_AUTODETECT_CHARSET_NAME "auto"
74#define SERVER_VERSION_LENGTH 60
75#define SQLSTATE_LENGTH 5
81#define RELYING_PARTY_ID_LENGTH 255
84#define CHALLENGE_LENGTH 32
87#define MAX_AUTH_FACTORS 3
93#define TABLE_COMMENT_INLINE_MAXLEN 180
94#define TABLE_COMMENT_MAXLEN 2048
95#define COLUMN_COMMENT_MAXLEN 1024
96#define INDEX_COMMENT_MAXLEN 1024
97#define TABLE_PARTITION_COMMENT_MAXLEN 1024
98#define TABLESPACE_COMMENT_MAXLEN 2048
108#define MAX_PACKET_LENGTH (256L * 256L * 256L - 1)
110#define LOCAL_HOST "localhost"
111#define LOCAL_HOST_NAMEDPIPE "."
114#define MYSQL_NAMEDPIPE "MySQL"
115#define MYSQL_SERVICENAME "MySQL"
119#define FRM_GCOL_HEADER_SIZE 4
123#define GENERATED_COLUMN_EXPRESSION_MAXLEN 65535 - FRM_GCOL_HEADER_SIZE
128#define SCRAMBLE_LENGTH 20
129#define AUTH_PLUGIN_DATA_PART_1_LENGTH 8
131#define SCRAMBLED_PASSWORD_CHAR_LENGTH (SCRAMBLE_LENGTH * 2 + 1)
154#define NOT_NULL_FLAG 1
155#define PRI_KEY_FLAG 2
156#define UNIQUE_KEY_FLAG 4
157#define MULTIPLE_KEY_FLAG 8
159#define UNSIGNED_FLAG 32
160#define ZEROFILL_FLAG 64
161#define BINARY_FLAG 128
165#define AUTO_INCREMENT_FLAG 512
166#define TIMESTAMP_FLAG 1024
168#define NO_DEFAULT_VALUE_FLAG 4096
169#define ON_UPDATE_NOW_FLAG 8192
170#define NUM_FLAG 32768
171#define PART_KEY_FLAG 16384
172#define GROUP_FLAG 32768
173#define UNIQUE_FLAG 65536
174#define BINCMP_FLAG 131072
175#define GET_FIXED_FIELDS_FLAG \
178#define FIELD_IN_PART_FUNC_FLAG (1 << 19)
183#define FIELD_IN_ADD_INDEX (1 << 20)
184#define FIELD_IS_RENAMED (1 << 21)
185#define FIELD_FLAGS_STORAGE_MEDIA 22
186#define FIELD_FLAGS_STORAGE_MEDIA_MASK (3 << FIELD_FLAGS_STORAGE_MEDIA)
187#define FIELD_FLAGS_COLUMN_FORMAT 24
188#define FIELD_FLAGS_COLUMN_FORMAT_MASK (3 << FIELD_FLAGS_COLUMN_FORMAT)
189#define FIELD_IS_DROPPED (1 << 26)
190#define EXPLICIT_NULL_FLAG \
196#define NOT_SECONDARY_FLAG (1 << 29)
198#define FIELD_IS_INVISIBLE (1 << 30)
218#define REFRESH_GRANT 1
220#define REFRESH_TABLES 4
221#define REFRESH_HOSTS 8
222#define REFRESH_STATUS 16
223#define REFRESH_THREADS 32
224#define REFRESH_REPLICA \
227#define REFRESH_SLAVE \
232#define REFRESH_MASTER \
235#define REFRESH_ERROR_LOG 256
236#define REFRESH_ENGINE_LOG 512
237#define REFRESH_BINARY_LOG 1024
238#define REFRESH_RELAY_LOG 2048
239#define REFRESH_GENERAL_LOG 4096
240#define REFRESH_SLOW_LOG 8192
241#define REFRESH_READ_LOCK 16384
247#define REFRESH_FAST 32768
248#define REFRESH_USER_RESOURCES \
251#define REFRESH_FOR_EXPORT 0x100000L
252#define REFRESH_OPTIMIZER_COSTS 0x200000L
253#define REFRESH_PERSIST 0x400000L
285#define CLIENT_LONG_PASSWORD 1
290#define CLIENT_FOUND_ROWS 2
308#define CLIENT_LONG_FLAG 4
327#define CLIENT_CONNECT_WITH_DB 8
328#define CLIENT_NO_SCHEMA \
345#define CLIENT_COMPRESS 32
351#define CLIENT_ODBC 64
365#define CLIENT_LOCAL_FILES 128
379#define CLIENT_IGNORE_SPACE 256
397#define CLIENT_PROTOCOL_41 512
416#define CLIENT_INTERACTIVE 1024
432#define CLIENT_SSL 2048
443#define CLIENT_IGNORE_SIGPIPE 4096
463#define CLIENT_TRANSACTIONS 8192
464#define CLIENT_RESERVED 16384
465#define CLIENT_RESERVED2 \
492#define CLIENT_MULTI_STATEMENTS (1UL << 16)
515#define CLIENT_MULTI_RESULTS (1UL << 17)
538#define CLIENT_PS_MULTI_RESULTS (1UL << 18)
565#define CLIENT_PLUGIN_AUTH (1UL << 19)
583#define CLIENT_CONNECT_ATTRS (1UL << 20)
615#define CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA (1UL << 21)
635#define CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS (1UL << 22)
657#define CLIENT_SESSION_TRACK (1UL << 23)
691#define CLIENT_DEPRECATE_EOF (1UL << 24)
696#define CLIENT_OPTIONAL_RESULTSET_METADATA (1UL << 25)
715#define CLIENT_ZSTD_COMPRESSION_ALGORITHM (1UL << 26)
733#define CLIENT_QUERY_ATTRIBUTES (1UL << 27)
748#define MULTI_FACTOR_AUTHENTICATION (1UL << 28)
754#define CLIENT_CAPABILITY_EXTENSION (1UL << 29)
763#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30)
774#define CLIENT_REMEMBER_OPTIONS (1UL << 31)
778#define CAN_CLIENT_COMPRESS CLIENT_COMPRESS
781#define CLIENT_ALL_FLAGS \
782 (CLIENT_LONG_PASSWORD | CLIENT_FOUND_ROWS | CLIENT_LONG_FLAG | \
783 CLIENT_CONNECT_WITH_DB | CLIENT_NO_SCHEMA | CLIENT_COMPRESS | CLIENT_ODBC | \
784 CLIENT_LOCAL_FILES | CLIENT_IGNORE_SPACE | CLIENT_PROTOCOL_41 | \
785 CLIENT_INTERACTIVE | CLIENT_SSL | CLIENT_IGNORE_SIGPIPE | \
786 CLIENT_TRANSACTIONS | CLIENT_RESERVED | CLIENT_RESERVED2 | \
787 CLIENT_MULTI_STATEMENTS | CLIENT_MULTI_RESULTS | CLIENT_PS_MULTI_RESULTS | \
788 CLIENT_SSL_VERIFY_SERVER_CERT | CLIENT_REMEMBER_OPTIONS | \
789 CLIENT_PLUGIN_AUTH | CLIENT_CONNECT_ATTRS | \
790 CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA | \
791 CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS | CLIENT_SESSION_TRACK | \
792 CLIENT_DEPRECATE_EOF | CLIENT_OPTIONAL_RESULTSET_METADATA | \
793 CLIENT_ZSTD_COMPRESSION_ALGORITHM | CLIENT_QUERY_ATTRIBUTES | \
794 MULTI_FACTOR_AUTHENTICATION)
802#define CLIENT_BASIC_FLAGS \
803 (CLIENT_ALL_FLAGS & \
804 ~(CLIENT_SSL | CLIENT_COMPRESS | CLIENT_SSL_VERIFY_SERVER_CERT | \
805 CLIENT_ZSTD_COMPRESSION_ALGORITHM))
873#define SERVER_STATUS_CLEAR_SET \
874 (SERVER_QUERY_NO_GOOD_INDEX_USED | SERVER_QUERY_NO_INDEX_USED | \
875 SERVER_MORE_RESULTS_EXISTS | SERVER_STATUS_METADATA_CHANGED | \
876 SERVER_QUERY_WAS_SLOW | SERVER_STATUS_DB_DROPPED | \
877 SERVER_STATUS_CURSOR_EXISTS | SERVER_STATUS_LAST_ROW_SENT | \
878 SERVER_SESSION_STATE_CHANGED)
881#define MYSQL_ERRMSG_SIZE 512
882#define NET_READ_TIMEOUT 30
883#define NET_WRITE_TIMEOUT 60
884#define NET_WAIT_TIMEOUT 8 * 60 * 60
891#define ONLY_KILL_QUERY 1
895#define MYSQL_VIO struct Vio *
898#define MAX_TINYINT_WIDTH 3
899#define MAX_SMALLINT_WIDTH 5
900#define MAX_MEDIUMINT_WIDTH 8
901#define MAX_INT_WIDTH 10
902#define MAX_BIGINT_WIDTH 20
904#define MAX_CHAR_WIDTH 255
906#define MAX_BLOB_WIDTH 16777216
908#define NET_ERROR_UNSET 0
909#define NET_ERROR_SOCKET_RECOVERABLE 1
910#define NET_ERROR_SOCKET_UNUSABLE 2
911#define NET_ERROR_SOCKET_NOT_READABLE 3
912#define NET_ERROR_SOCKET_NOT_WRITABLE 4
949#define packet_error (~(unsigned long)0)
956#define CLIENT_MULTI_QUERIES CLIENT_MULTI_STATEMENTS
957#define FIELD_TYPE_DECIMAL MYSQL_TYPE_DECIMAL
958#define FIELD_TYPE_NEWDECIMAL MYSQL_TYPE_NEWDECIMAL
959#define FIELD_TYPE_TINY MYSQL_TYPE_TINY
960#define FIELD_TYPE_SHORT MYSQL_TYPE_SHORT
961#define FIELD_TYPE_LONG MYSQL_TYPE_LONG
962#define FIELD_TYPE_FLOAT MYSQL_TYPE_FLOAT
963#define FIELD_TYPE_DOUBLE MYSQL_TYPE_DOUBLE
964#define FIELD_TYPE_NULL MYSQL_TYPE_NULL
965#define FIELD_TYPE_TIMESTAMP MYSQL_TYPE_TIMESTAMP
966#define FIELD_TYPE_LONGLONG MYSQL_TYPE_LONGLONG
967#define FIELD_TYPE_INT24 MYSQL_TYPE_INT24
968#define FIELD_TYPE_DATE MYSQL_TYPE_DATE
969#define FIELD_TYPE_TIME MYSQL_TYPE_TIME
970#define FIELD_TYPE_DATETIME MYSQL_TYPE_DATETIME
971#define FIELD_TYPE_YEAR MYSQL_TYPE_YEAR
972#define FIELD_TYPE_NEWDATE MYSQL_TYPE_NEWDATE
973#define FIELD_TYPE_ENUM MYSQL_TYPE_ENUM
974#define FIELD_TYPE_SET MYSQL_TYPE_SET
975#define FIELD_TYPE_TINY_BLOB MYSQL_TYPE_TINY_BLOB
976#define FIELD_TYPE_MEDIUM_BLOB MYSQL_TYPE_MEDIUM_BLOB
977#define FIELD_TYPE_LONG_BLOB MYSQL_TYPE_LONG_BLOB
978#define FIELD_TYPE_BLOB MYSQL_TYPE_BLOB
979#define FIELD_TYPE_VAR_STRING MYSQL_TYPE_VAR_STRING
980#define FIELD_TYPE_STRING MYSQL_TYPE_STRING
981#define FIELD_TYPE_CHAR MYSQL_TYPE_TINY
982#define FIELD_TYPE_INTERVAL MYSQL_TYPE_ENUM
983#define FIELD_TYPE_GEOMETRY MYSQL_TYPE_GEOMETRY
984#define FIELD_TYPE_BIT MYSQL_TYPE_BIT
994#define MYSQL_SHUTDOWN_KILLABLE_CONNECT (unsigned char)(1 << 0)
995#define MYSQL_SHUTDOWN_KILLABLE_TRANS (unsigned char)(1 << 1)
996#define MYSQL_SHUTDOWN_KILLABLE_LOCK_TABLE (unsigned char)(1 << 2)
997#define MYSQL_SHUTDOWN_KILLABLE_UPDATE (unsigned char)(1 << 3)
1031#if defined(__clang__)
1034#pragma clang diagnostic push
1035#pragma clang diagnostic ignored "-Wdocumentation"
1041#if defined(__clang__)
1042#pragma clang diagnostic pop
1080#define SESSION_TRACK_BEGIN SESSION_TRACK_SYSTEM_VARIABLES
1083#define SESSION_TRACK_END SESSION_TRACK_TRANSACTION_STATE
1086#define IS_SESSION_STATE_TYPE(T) \
1087 (((int)(T) >= SESSION_TRACK_BEGIN) && ((T) <= SESSION_TRACK_END))
1089#define net_new_transaction(net) ((net)->pkt_nr = 0)
1100 const unsigned char *header,
size_t head_len,
1101 const unsigned char *packet,
size_t len);
1122#define NET_HEADER_SIZE 4
1123#define COMP_HEADER_SIZE 3
1139 unsigned int password_len);
1143 unsigned long *salt);
1149bool check_scramble(
const unsigned char *reply,
const char *message,
1150 const unsigned char *hash_stage2);
1153char *
octet2hex(
char *to,
const char *
str,
unsigned int len);
1158 const char *src,
size_t src_size,
const char *
rnd,
1187 unsigned long max_length);
1194#define NULL_LENGTH ((unsigned long)~0)
1195#define MYSQL_STMT_HEADER 4
1196#define MYSQL_LONG_DATA_HEADER 6
mysql_enum_shutdown_level
We want levels to be in growing order of hardness (because we use number comparisons).
Definition: mysql_com.h:1004
#define MYSQL_SHUTDOWN_KILLABLE_CONNECT
Definition: mysql_com.h:993
#define MYSQL_SHUTDOWN_KILLABLE_UPDATE
Definition: mysql_com.h:996
#define MYSQL_SHUTDOWN_KILLABLE_TRANS
Definition: mysql_com.h:994
@ SHUTDOWN_WAIT_CRITICAL_BUFFERS
Don't flush InnoDB buffers, flush other storage engines' buffers.
Definition: mysql_com.h:1015
@ SHUTDOWN_WAIT_ALL_BUFFERS
Flush InnoDB buffers and other storage engines' buffers.
Definition: mysql_com.h:1013
@ SHUTDOWN_WAIT_CONNECTIONS
Wait for existing connections to finish.
Definition: mysql_com.h:1007
@ SHUTDOWN_WAIT_TRANSACTIONS
Wait for existing transactons to finish.
Definition: mysql_com.h:1009
@ KILL_QUERY
Query level of the KILL command.
Definition: mysql_com.h:1017
@ SHUTDOWN_WAIT_UPDATES
Wait for existing updates to finish (=> no partial MyISAM update)
Definition: mysql_com.h:1011
@ KILL_CONNECTION
Connection level of the KILL command.
Definition: mysql_com.h:1019
@ SHUTDOWN_DEFAULT
Definition: mysql_com.h:1005
static int rnd(int max_value)
Definition: hp_test2.cc:548
#define STDCALL
Definition: my_compiler.h:156
Common #defines and includes for file and socket I/O.
Types to make file and socket I/O compatible.
unsigned int STDCALL mysql_errno(MYSQL *mysql)
Definition: client.cc:9086
int my_socket
Definition: mysql.h:65
unsigned char * net_store_length(unsigned char *pkg, unsigned long long length)
void make_scrambled_password_323(char *to, const char *password)
enum_session_state_type
Type of state change information that the server can include in the Ok packet.
Definition: mysql_com.h:1069
@ SESSION_TRACK_GTIDS
See also: session_track_gtids.
Definition: mysql_com.h:1073
@ SESSION_TRACK_SCHEMA
Current schema.
Definition: mysql_com.h:1071
@ SESSION_TRACK_TRANSACTION_CHARACTERISTICS
Transaction chistics.
Definition: mysql_com.h:1074
@ SESSION_TRACK_TRANSACTION_STATE
Transaction state.
Definition: mysql_com.h:1075
@ SESSION_TRACK_STATE_CHANGE
track session state changes
Definition: mysql_com.h:1072
@ SESSION_TRACK_SYSTEM_VARIABLES
Session system variables.
Definition: mysql_com.h:1070
SERVER_STATUS_flags_enum
The status flags are a bit-field.
Definition: mysql_com.h:807
@ SERVER_STATUS_LAST_ROW_SENT
This flag is sent when a read-only cursor is exhausted, in reply to COM_STMT_FETCH command.
Definition: mysql_com.h:833
@ SERVER_QUERY_WAS_SLOW
Definition: mysql_com.h:842
@ SERVER_STATUS_IN_TRANS
Is raised when a multi-statement transaction has been started, either explicitly, by means of BEGIN o...
Definition: mysql_com.h:815
@ SERVER_STATUS_NO_BACKSLASH_ESCAPES
Definition: mysql_com.h:835
@ SERVER_STATUS_DB_DROPPED
A database was dropped.
Definition: mysql_com.h:834
@ SERVER_STATUS_CURSOR_EXISTS
The server was able to fulfill the clients request and opened a read-only non-scrollable cursor for a...
Definition: mysql_com.h:828
@ SERVER_STATUS_AUTOCOMMIT
Server in auto_commit mode.
Definition: mysql_com.h:816
@ SERVER_SESSION_STATE_CHANGED
This status flag, when on, implies that one of the state information has changed on the server becaus...
Definition: mysql_com.h:861
@ SERVER_QUERY_NO_GOOD_INDEX_USED
Definition: mysql_com.h:818
@ SERVER_STATUS_IN_TRANS_READONLY
Set at the same time as SERVER_STATUS_IN_TRANS if the started multi-statement transaction is a read-o...
Definition: mysql_com.h:855
@ SERVER_QUERY_NO_INDEX_USED
Definition: mysql_com.h:819
@ SERVER_MORE_RESULTS_EXISTS
Multi query - next query exists.
Definition: mysql_com.h:817
@ SERVER_STATUS_METADATA_CHANGED
Sent to the client if after a prepared statement reprepare we discovered that the new statement retur...
Definition: mysql_com.h:841
@ SERVER_PS_OUT_PARAMS
To mark ResultSet containing output parameter values.
Definition: mysql_com.h:846
bool my_net_init(struct NET *net, MYSQL_VIO vio)
bool net_write_command(struct NET *net, unsigned char command, const unsigned char *header, size_t head_len, const unsigned char *packet, size_t len)
Send a command to the server.
Definition: net_serv.cc:872
void scramble_323(char *to, const char *message, const char *password)
void scramble(char *to, const char *message, const char *password)
Produce an obscure octet sequence from password and random string, received from the server.
Definition: password.cc:271
void my_net_set_read_timeout(struct NET *net, unsigned int timeout)
Definition: net_serv.cc:2247
void make_password_from_salt_323(char *to, const unsigned long *salt)
void my_net_set_write_timeout(struct NET *net, unsigned int timeout)
Definition: net_serv.cc:2254
bool my_thread_init(void)
Allocate thread specific memory for the thread, used by mysys and dbug.
Definition: my_thr_init.cc:269
double my_rnd(struct rand_struct *)
Generate random number.
Definition: my_rnd.cc:51
enum_cursor_type
The flags used in COM_STMT_EXECUTE.
Definition: mysql_com.h:1043
@ CURSOR_TYPE_NO_CURSOR
Definition: mysql_com.h:1044
@ CURSOR_TYPE_FOR_UPDATE
Definition: mysql_com.h:1046
@ CURSOR_TYPE_SCROLLABLE
Definition: mysql_com.h:1047
@ CURSOR_TYPE_READ_ONLY
Definition: mysql_com.h:1045
@ PARAMETER_COUNT_AVAILABLE
On when the client will send the parameter count even for 0 parameters.
Definition: mysql_com.h:1052
#define MYSQL_ERRMSG_SIZE
Max length of a error message.
Definition: mysql_com.h:880
void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st)
bool check_scramble(const unsigned char *reply, const char *message, const unsigned char *hash_stage2)
char * get_tty_password(const char *opt_message)
Definition: get_password.cc:146
unsigned long my_net_read(struct NET *net)
Read a packet from the client/server and return it without the internal package header.
Definition: net_serv.cc:2234
#define MYSQL_VIO
Definition: mysql_com.h:894
bool check_scramble_323(const unsigned char *reply, const char *message, unsigned long *salt)
enum_mysql_set_option
options for mysql_options()
Definition: mysql_com.h:1056
@ MYSQL_OPTION_MULTI_STATEMENTS_OFF
Definition: mysql_com.h:1058
@ MYSQL_OPTION_MULTI_STATEMENTS_ON
Definition: mysql_com.h:1057
void get_salt_from_password_323(unsigned long *res, const char *password)
void my_thread_end(void)
Deallocate memory used by the thread for book-keeping.
Definition: my_thr_init.cc:304
void my_net_set_retry_count(struct NET *net, unsigned int retry_count)
Definition: net_serv.cc:2261
unsigned int net_field_length_size(const unsigned char *pos)
length of buffer required to represent a length-encoded string give the length part of length encoded...
Definition: pack.cc:178
void net_clear(struct NET *net, bool check_buffer)
Clear (reinitialize) the NET structure for a new command.
Definition: net_serv.cc:264
#define SQLSTATE_LENGTH
Definition: mysql_com.h:75
unsigned int net_length_size(unsigned long long num)
bool generate_sha256_scramble(unsigned char *dst, size_t dst_size, const char *src, size_t src_size, const char *rnd, size_t rnd_size)
Definition: sha2_password_common.cc:387
bool net_write_packet(struct NET *net, const unsigned char *packet, size_t length)
Write a MySQL protocol packet to the network handler.
Definition: net_serv.cc:1289
const char * mysql_errno_to_sqlstate(unsigned int mysql_errno)
Definition: sql_state.cc:43
bool net_realloc(struct NET *net, size_t length)
Realloc the packet buffer.
Definition: net_serv.cc:210
void make_scrambled_password(char *to, const char *password)
Definition: password.cc:251
bool my_net_write(struct NET *net, const unsigned char *packet, size_t len)
Write a logical packet with packet header.
Definition: net_serv.cc:436
void net_end(struct NET *net)
Definition: net_serv.cc:191
enum_resultset_metadata
Definition: mysql_com.h:1023
@ RESULTSET_METADATA_NONE
No metadata will be sent.
Definition: mysql_com.h:1025
@ RESULTSET_METADATA_FULL
The server will send all metadata.
Definition: mysql_com.h:1027
char * octet2hex(char *to, const char *str, unsigned int len)
Definition: password.cc:139
void randominit(struct rand_struct *, unsigned long seed1, unsigned long seed2)
void my_net_local_init(struct NET *net)
Definition: libmysql.cc:952
bool net_flush(struct NET *net)
Flush write_buffer if not empty.
Definition: net_serv.cc:285
void get_salt_from_password(unsigned char *res, const char *password)
uint64_t net_field_length_ll(unsigned char **packet)
Definition: fido_common.h:83
void hash_password(unsigned long *to, const char *password, unsigned int password_len)
void net_claim_memory_ownership(struct NET *net, bool claim)
Definition: net_serv.cc:204
void make_password_from_salt(char *to, const unsigned char *hash_stage2)
static char * password
Definition: mysql_secure_installation.cc:56
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1052
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
static bool timeout(bool(*wait_condition)())
Timeout function.
Definition: log0meb.cc:496
ulong STDCALL net_field_length(uchar **packet)
Definition: pack.cc:38
ulong STDCALL net_field_length_checked(uchar **packet, ulong max_length)
Definition: pack.cc:61
Definition: mysql_com.h:913
unsigned int pkt_nr
Definition: mysql_com.h:924
char sqlstate[SQLSTATE_LENGTH+1]
Client library sqlstate buffer.
Definition: mysql_com.h:936
MYSQL_VIO vio
Definition: mysql_com.h:914
unsigned char error
Definition: mysql_com.h:932
unsigned char * read_pos
Definition: mysql_com.h:915
unsigned char reading_or_writing
Definition: mysql_com.h:928
unsigned int retry_count
Definition: mysql_com.h:925
bool compress
Definition: mysql_com.h:930
unsigned int * return_status
Definition: mysql_com.h:927
unsigned long length
Definition: mysql_com.h:922
unsigned long max_packet_size
Definition: mysql_com.h:923
unsigned long where_b
Definition: mysql_com.h:922
unsigned long max_packet
Definition: mysql_com.h:923
void * extension
Extension pointer, for the caller private use.
Definition: mysql_com.h:945
unsigned char save_char
Definition: mysql_com.h:929
unsigned int last_errno
Definition: mysql_com.h:931
unsigned char * buff
Definition: mysql_com.h:915
int fcntl
Definition: mysql_com.h:926
my_socket fd
Definition: mysql_com.h:916
unsigned char * write_pos
Definition: mysql_com.h:915
unsigned long remain_in_buf
Set if we are doing several queries in one command ( as in LOAD TABLE ... FROM MASTER ),...
Definition: mysql_com.h:922
char last_error[MYSQL_ERRMSG_SIZE]
Client library error message buffer.
Definition: mysql_com.h:934
unsigned int compress_pkt_nr
Definition: mysql_com.h:924
unsigned int read_timeout
Definition: mysql_com.h:925
unsigned char * buff_end
Definition: mysql_com.h:915
unsigned int write_timeout
Definition: mysql_com.h:925
unsigned long buf_length
Definition: mysql_com.h:922
Definition: violite.h:318
Definition: mysql_com.h:1108
unsigned long seed2
Definition: mysql_com.h:1109
unsigned long max_value
Definition: mysql_com.h:1109
double max_value_dbl
Definition: mysql_com.h:1110
unsigned long seed1
Definition: mysql_com.h:1109
command
Definition: version_token.cc:280