Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
07978008
Commit
07978008
authored
Nov 01, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.1-maint
into shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
parents
2d1215f4
bc7b0a2e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
228 additions
and
552 deletions
+228
-552
client/mysqltest.c
client/mysqltest.c
+18
-18
include/Makefile.am
include/Makefile.am
+12
-16
include/mysql_h.ic
include/mysql_h.ic
+158
-488
mysql-test/lib/mtr_io.pl
mysql-test/lib/mtr_io.pl
+5
-7
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_process.pl
+25
-15
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+10
-8
No files found.
client/mysqltest.c
View file @
07978008
...
...
@@ -1409,7 +1409,7 @@ int open_file(const char *name)
void
do_source
(
struct
st_command
*
command
)
{
DYNAMIC_STRING
ds_filename
;
static
DYNAMIC_STRING
ds_filename
;
const
struct
command_arg
source_args
[]
=
{
"filename"
,
ARG_STRING
,
TRUE
,
&
ds_filename
,
"File to source"
};
...
...
@@ -1697,7 +1697,7 @@ void do_system(struct st_command *command)
void
do_remove_file
(
struct
st_command
*
command
)
{
int
error
;
DYNAMIC_STRING
ds_filename
;
static
DYNAMIC_STRING
ds_filename
;
const
struct
command_arg
rm_args
[]
=
{
"filename"
,
ARG_STRING
,
TRUE
,
&
ds_filename
,
"File to delete"
};
...
...
@@ -1730,8 +1730,8 @@ void do_remove_file(struct st_command *command)
void
do_copy_file
(
struct
st_command
*
command
)
{
int
error
;
DYNAMIC_STRING
ds_from_file
;
DYNAMIC_STRING
ds_to_file
;
static
DYNAMIC_STRING
ds_from_file
;
static
DYNAMIC_STRING
ds_to_file
;
const
struct
command_arg
copy_file_args
[]
=
{
"from_file"
,
ARG_STRING
,
TRUE
,
&
ds_from_file
,
"Filename to copy from"
,
"to_file"
,
ARG_STRING
,
TRUE
,
&
ds_to_file
,
"Filename to copy to"
...
...
@@ -1766,7 +1766,7 @@ void do_copy_file(struct st_command *command)
void
do_file_exist
(
struct
st_command
*
command
)
{
int
error
;
DYNAMIC_STRING
ds_filename
;
static
DYNAMIC_STRING
ds_filename
;
const
struct
command_arg
file_exist_args
[]
=
{
"filename"
,
ARG_STRING
,
TRUE
,
&
ds_filename
,
"File to check if it exist"
};
...
...
@@ -1873,9 +1873,9 @@ void read_until_delimiter(DYNAMIC_STRING *ds,
void
do_write_file
(
struct
st_command
*
command
)
{
DYNAMIC_STRING
ds_content
;
DYNAMIC_STRING
ds_filename
;
DYNAMIC_STRING
ds_delimiter
;
static
DYNAMIC_STRING
ds_content
;
static
DYNAMIC_STRING
ds_filename
;
static
DYNAMIC_STRING
ds_delimiter
;
const
struct
command_arg
write_file_args
[]
=
{
"filename"
,
ARG_STRING
,
TRUE
,
&
ds_filename
,
"File to write to"
,
"delimiter"
,
ARG_STRING
,
FALSE
,
&
ds_delimiter
,
"Delimiter to read until"
...
...
@@ -1927,8 +1927,8 @@ void do_perl(struct st_command *command)
int
error
;
char
buf
[
FN_REFLEN
];
FILE
*
res_file
;
DYNAMIC_STRING
ds_script
;
DYNAMIC_STRING
ds_delimiter
;
static
DYNAMIC_STRING
ds_script
;
static
DYNAMIC_STRING
ds_delimiter
;
const
struct
command_arg
perl_args
[]
=
{
"delimiter"
,
ARG_STRING
,
FALSE
,
&
ds_delimiter
,
"Delimiter to read until"
};
...
...
@@ -2985,14 +2985,14 @@ void do_connect(struct st_command *command)
bool
con_ssl
=
0
,
con_compress
=
0
;
char
*
ptr
;
DYNAMIC_STRING
ds_connection_name
;
DYNAMIC_STRING
ds_host
;
DYNAMIC_STRING
ds_user
;
DYNAMIC_STRING
ds_password
;
DYNAMIC_STRING
ds_database
;
DYNAMIC_STRING
ds_port
;
DYNAMIC_STRING
ds_sock
;
DYNAMIC_STRING
ds_options
;
static
DYNAMIC_STRING
ds_connection_name
;
static
DYNAMIC_STRING
ds_host
;
static
DYNAMIC_STRING
ds_user
;
static
DYNAMIC_STRING
ds_password
;
static
DYNAMIC_STRING
ds_database
;
static
DYNAMIC_STRING
ds_port
;
static
DYNAMIC_STRING
ds_sock
;
static
DYNAMIC_STRING
ds_options
;
const
struct
command_arg
connect_args
[]
=
{
"connection name"
,
ARG_STRING
,
TRUE
,
&
ds_connection_name
,
"Name of the connection"
,
...
...
include/Makefile.am
View file @
07978008
...
...
@@ -15,14 +15,14 @@
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA 02111-1307, USA
BUILT_SOURCES
=
mysql_version.h m
_ctype.h my_config.h mysql_h.ic
BUILT_SOURCES
=
mysql_version.h m
y_config.h abi_check
pkginclude_HEADERS
=
my_dbug.h m_string.h my_sys.h my_list.h my_xml.h
\
mysql.h mysql_com.h mysqld_error.h mysql_embed.h
\
my_semaphore.h my_pthread.h my_no_pthread.h raid.h
\
errmsg.h my_global.h my_net.h my_alloc.h
\
my_getopt.h sslopt-longopts.h my_dir.h typelib.h
\
sslopt-vars.h sslopt-case.h sql_common.h keycache.h
\
sql_state.h mysql_time.h
$(BUILT_SOURCES)
sql_state.h mysql_time.h
m_ctype.h
$(BUILT_SOURCES)
noinst_HEADERS
=
config-win.h config-os2.h config-netware.h
\
nisam.h heap.h merge.h my_bitmap.h
\
myisam.h myisampack.h myisammrg.h ft_global.h
\
...
...
@@ -32,7 +32,8 @@ noinst_HEADERS = config-win.h config-os2.h config-netware.h \
thr_lock.h t_ctype.h violite.h md5.h
\
mysql_version.h.in my_handler.h my_time.h
CLEANFILES
=
mysql_h.ic
CLEANFILES
=
abi_check
EXTRA_DIST
=
mysql_h.ic
# mysql_version.h are generated
SUPERCLEANFILES
=
mysql_version.h my_config.h
$(CLEANFILES)
...
...
@@ -61,22 +62,17 @@ dist-hook:
# Rules for checking that ABI has not changed
#
# Create a icheck file for mysql.h
mysql_h.ic
:
mysql.h
@
set
-x
;
\
# Create a icheck file and compare it to the reference
abi_check
:
mysql.h mysql_version.h mysql_com.h mysql_time.h my_list.h
\
my_alloc.h typelib.h
@
set
-ex
;
\
if
[
@ICHECK@
!=
no
]
;
then
\
@ICHECK@
--canonify
-o
$@
mysql.h
;
\
fi
;
# Compare the icheck file to the reference
check_abi
:
mysql_h.ic
@
set
-x
;
\
if
[
@ICHECK@
!=
no
]
;
then
\
@ICHECK@
--compare
mysql_h.ic mysql_h_abi.ic
;
\
@ICHECK@
--canonify
--skip-from-re
/usr/
-o
$@
.ic mysql.h
;
\
@ICHECK@
--compare
mysql_h.ic
$@
.ic
;
\
fi
;
\
touch
check_abi
;
touch
abi_check
;
all
:
check_abi
all
:
abi_check
# Don't update the files from bitkeeper
...
...
include/mysql_h
_abi
.ic
→
include/mysql_h.ic
View file @
07978008
struct __pthread_internal_slist;
struct __pthread_mutex_s;
struct rand_struct;
struct st_list;
struct st_mem_root;
...
...
@@ -20,8 +18,6 @@ struct st_typelib;
struct st_udf_args;
struct st_udf_init;
struct st_used_mem;
struct timespec;
struct timeval;
enum Item_result;
enum enum_field_types;
enum enum_mysql_set_option;
...
...
@@ -34,37 +30,29 @@ enum mysql_option;
enum mysql_protocol_type;
enum mysql_rpl_type;
enum mysql_status;
# 59 "/usr/include/bits/types.h"
typedef long long int __quad_t;
# 135 "mysql.h"
# 131 "mysql.h"
typedef struct st_mysql_rows MYSQL_ROWS;
# 55 "/usr/include/sys/select.h"
typedef long int __fd_mask;
# 145 "/usr/include/bits/types.h"
typedef __quad_t __off64_t;
# 60 "/usr/include/bits/types.h"
typedef unsigned long long int __u_quad_t;
# 24 "my_list.h"
typedef struct st_list LIST;
# 23
6
"mysql.h"
# 23
2
"mysql.h"
typedef struct st_mysql MYSQL;
# 57
5
"mysql.h"
# 57
1
"mysql.h"
typedef struct st_mysql_bind MYSQL_BIND;
# 9
7
"mysql.h"
# 9
3
"mysql.h"
typedef struct st_mysql_field MYSQL_FIELD;
# 1
21
"mysql.h"
# 1
17
"mysql.h"
typedef unsigned int MYSQL_FIELD_OFFSET;
# 32
7
"mysql.h"
# 32
3
"mysql.h"
typedef struct st_mysql_manager MYSQL_MANAGER;
# 3
41
"mysql.h"
# 3
37
"mysql.h"
typedef struct st_mysql_parameters MYSQL_PARAMETERS;
# 29
6
"mysql.h"
# 29
2
"mysql.h"
typedef struct st_mysql_res MYSQL_RES;
# 1
20
"mysql.h"
# 1
16
"mysql.h"
typedef char * * MYSQL_ROW;
# 1
41
"mysql.h"
# 1
37
"mysql.h"
typedef MYSQL_ROWS * MYSQL_ROW_OFFSET;
#
600
"mysql.h"
#
596
"mysql.h"
typedef struct st_mysql_stmt MYSQL_STMT;
# 151 "mysql_com.h"
typedef struct st_net NET;
...
...
@@ -72,86 +60,21 @@ typedef struct st_net NET;
typedef struct st_typelib TYPELIB;
# 141 "mysql_com.h"
typedef struct st_vio Vio;
# 172 "/usr/include/bits/types.h"
typedef long int __blkcnt_t;
# 189 "/usr/include/bits/types.h"
typedef char * __caddr_t;
# 161 "/usr/include/bits/types.h"
typedef int __clockid_t;
# 156 "/usr/include/bits/types.h"
typedef int __daddr_t;
# 137 "/usr/include/bits/types.h"
typedef __u_quad_t __dev_t;
# 176 "/usr/include/bits/types.h"
typedef unsigned long int __fsblkcnt_t;
# 180 "/usr/include/bits/types.h"
typedef unsigned long int __fsfilcnt_t;
# 147 "/usr/include/bits/types.h"
typedef struct __attribute__((aligned(__alignof__(int))))
{
int __val[2];
} __fsid_t;
# 139 "/usr/include/bits/types.h"
typedef unsigned int __gid_t;
# 151 "/usr/include/bits/types.h"
typedef unsigned int __id_t;
# 140 "/usr/include/bits/types.h"
typedef unsigned long int __ino_t;
# 158 "/usr/include/bits/types.h"
typedef int __key_t;
# 187 "/usr/include/bits/types.h"
typedef __off64_t __loff_t;
# 142 "/usr/include/bits/types.h"
typedef unsigned int __mode_t;
# 143 "/usr/include/bits/types.h"
typedef unsigned int __nlink_t;
# 144 "/usr/include/bits/types.h"
typedef long int __off_t;
# 146 "/usr/include/bits/types.h"
typedef int __pid_t;
# 28 "/usr/include/bits/sigset.h"
typedef struct __attribute__((aligned(__alignof__(unsigned long int))))
{
unsigned long int __val[(1024 / (8 * sizeof(unsigned long int)))];
} __sigset_t;
# 183 "/usr/include/bits/types.h"
typedef int __ssize_t;
# 154 "/usr/include/bits/types.h"
typedef long int __suseconds_t;
# 152 "/usr/include/bits/types.h"
typedef long int __time_t;
# 164 "/usr/include/bits/types.h"
typedef void * __timer_t;
# 34 "/usr/include/bits/types.h"
typedef unsigned char __u_char;
# 36 "/usr/include/bits/types.h"
typedef unsigned int __u_int;
# 37 "/usr/include/bits/types.h"
typedef unsigned long int __u_long;
# 35 "/usr/include/bits/types.h"
typedef unsigned short int __u_short;
# 138 "/usr/include/bits/types.h"
typedef unsigned int __uid_t;
# 67 "/usr/include/sys/select.h"
typedef struct __attribute__((aligned(__alignof__(long int))))
{
__fd_mask __fds_bits[(1024 / (8 * sizeof(__fd_mask)))];
} fd_set;
# 61 "mysql.h"
# 57 "mysql.h"
typedef char * gptr;
# 29 "my_list.h"
typedef int (* list_walk_action)(void *, void *);
#
52
"mysql.h"
#
48
"mysql.h"
typedef char my_bool;
# 6
7
"mysql.h"
# 6
3
"mysql.h"
typedef int my_socket;
# 12
9
"mysql.h"
# 12
5
"mysql.h"
typedef unsigned long long int my_ulonglong;
# 35 "my_alloc.h"
typedef struct st_mem_root MEM_ROOT;
# 14
5
"mysql.h"
# 14
1
"mysql.h"
typedef struct st_mysql_data MYSQL_DATA;
# 6
52
"mysql.h"
# 6
48
"mysql.h"
typedef struct st_mysql_methods MYSQL_METHODS;
# 48 "mysql_time.h"
typedef struct st_mysql_time MYSQL_TIME;
...
...
@@ -161,237 +84,6 @@ typedef struct st_udf_args UDF_ARGS;
typedef struct st_udf_init UDF_INIT;
# 27 "my_alloc.h"
typedef struct st_used_mem USED_MEM;
# 173 "/usr/include/bits/types.h"
typedef __quad_t __blkcnt64_t;
# 167 "/usr/include/bits/types.h"
typedef long int __blksize_t;
# 148 "/usr/include/bits/types.h"
typedef long int __clock_t;
# 177 "/usr/include/bits/types.h"
typedef __u_quad_t __fsblkcnt64_t;
# 181 "/usr/include/bits/types.h"
typedef __u_quad_t __fsfilcnt64_t;
# 141 "/usr/include/bits/types.h"
typedef __u_quad_t __ino64_t;
# 42 "/usr/include/bits/types.h"
typedef short int __int16_t;
# 44 "/usr/include/bits/types.h"
typedef int __int32_t;
# 50 "/usr/include/bits/types.h"
typedef long long int __int64_t;
# 40 "/usr/include/bits/types.h"
typedef signed char __int8_t;
# 192 "/usr/include/bits/types.h"
typedef int __intptr_t;
# 46 "/usr/include/bits/pthreadtypes.h"
typedef struct __pthread_internal_slist __pthread_slist_t;
# 188 "/usr/include/bits/types.h"
typedef __quad_t * __qaddr_t;
# 150 "/usr/include/bits/types.h"
typedef __u_quad_t __rlim64_t;
# 149 "/usr/include/bits/types.h"
typedef unsigned long int __rlim_t;
# 23 "/usr/include/bits/sigset.h"
typedef int __sig_atomic_t;
# 195 "/usr/include/bits/types.h"
typedef unsigned int __socklen_t;
# 157 "/usr/include/bits/types.h"
typedef long int __swblk_t;
# 43 "/usr/include/bits/types.h"
typedef unsigned short int __uint16_t;
# 45 "/usr/include/bits/types.h"
typedef unsigned int __uint32_t;
# 51 "/usr/include/bits/types.h"
typedef unsigned long long int __uint64_t;
# 41 "/usr/include/bits/types.h"
typedef unsigned char __uint8_t;
# 153 "/usr/include/bits/types.h"
typedef unsigned int __useconds_t;
# 235 "/usr/include/sys/types.h"
typedef __blkcnt_t blkcnt_t;
# 117 "/usr/include/sys/types.h"
typedef __caddr_t caddr_t;
# 93 "/usr/include/time.h"
typedef __clockid_t clockid_t;
# 116 "/usr/include/sys/types.h"
typedef __daddr_t daddr_t;
# 62 "/usr/include/sys/types.h"
typedef __dev_t dev_t;
# 85 "/usr/include/sys/select.h"
typedef __fd_mask fd_mask;
# 239 "/usr/include/sys/types.h"
typedef __fsblkcnt_t fsblkcnt_t;
# 243 "/usr/include/sys/types.h"
typedef __fsfilcnt_t fsfilcnt_t;
# 41 "/usr/include/sys/types.h"
typedef __fsid_t fsid_t;
# 67 "/usr/include/sys/types.h"
typedef __gid_t gid_t;
# 105 "/usr/include/sys/types.h"
typedef __id_t id_t;
# 50 "/usr/include/sys/types.h"
typedef __ino_t ino_t;
# 196 "/usr/include/sys/types.h"
typedef int int16_t;
# 197 "/usr/include/sys/types.h"
typedef int int32_t;
# 198 "/usr/include/sys/types.h"
typedef int int64_t;
# 195 "/usr/include/sys/types.h"
typedef int int8_t;
# 123 "/usr/include/sys/types.h"
typedef __key_t key_t;
# 46 "/usr/include/sys/types.h"
typedef __loff_t loff_t;
# 72 "/usr/include/sys/types.h"
typedef __mode_t mode_t;
# 77 "/usr/include/sys/types.h"
typedef __nlink_t nlink_t;
# 88 "/usr/include/sys/types.h"
typedef __off_t off_t;
# 100 "/usr/include/sys/types.h"
typedef __pid_t pid_t;
# 39 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
char __size[36];
long int __align;
} pthread_attr_t;
# 153 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
char __size[20];
long int __align;
} pthread_barrier_t;
# 159 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(int))))
{
char __size[4];
int __align;
} pthread_barrierattr_t;
# 84 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__alignof__(void *))))
{
struct __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__alignof__(void *))))
{
int __lock;
unsigned int __futex;
unsigned long long int __total_seq;
unsigned long long int __wakeup_seq;
unsigned long long int __woken_seq;
void * __mutex;
unsigned int __nwaiters;
unsigned int __broadcast_seq;
} __data;
char __size[48];
long long int __align;
} pthread_cond_t;
# 101 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
char __size[4];
long int __align;
} pthread_condattr_t;
# 109 "/usr/include/bits/pthreadtypes.h"
typedef unsigned int pthread_key_t;
# 54 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
struct __pthread_mutex_s __data;
char __size[24];
long int __align;
} pthread_mutex_t;
# 75 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
char __size[4];
long int __align;
} pthread_mutexattr_t;
# 113 "/usr/include/bits/pthreadtypes.h"
typedef int pthread_once_t;
# 119 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
struct __attribute__((aligned(__alignof__(int))))
{
int __lock;
unsigned int __nr_readers;
unsigned int __readers_wakeup;
unsigned int __writer_wakeup;
unsigned int __nr_readers_queued;
unsigned int __nr_writers_queued;
unsigned int __flags;
int __writer;
} __data;
char __size[32];
long int __align;
} pthread_rwlock_t;
# 138 "/usr/include/bits/pthreadtypes.h"
typedef union __attribute__((aligned(__alignof__(long int))))
{
char __size[8];
long int __align;
} pthread_rwlockattr_t;
# 148 "/usr/include/bits/pthreadtypes.h"
typedef int volatile pthread_spinlock_t;
# 36 "/usr/include/bits/pthreadtypes.h"
typedef unsigned long int pthread_t;
# 39 "/usr/include/sys/types.h"
typedef __quad_t quad_t;
# 206 "/usr/include/sys/types.h"
typedef int register_t;
# 38 "/usr/include/sys/select.h"
typedef __sigset_t sigset_t;
# 214 "/usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h"
typedef unsigned int size_t;
# 110 "/usr/include/sys/types.h"
typedef __ssize_t ssize_t;
# 49 "/usr/include/sys/select.h"
typedef __suseconds_t suseconds_t;
# 77 "/usr/include/time.h"
typedef __time_t time_t;
# 105 "/usr/include/time.h"
typedef __timer_t timer_t;
# 35 "/usr/include/sys/types.h"
typedef __u_char u_char;
# 37 "/usr/include/sys/types.h"
typedef __u_int u_int;
# 202 "/usr/include/sys/types.h"
typedef unsigned int u_int16_t;
# 203 "/usr/include/sys/types.h"
typedef unsigned int u_int32_t;
# 204 "/usr/include/sys/types.h"
typedef unsigned int u_int64_t;
# 201 "/usr/include/sys/types.h"
typedef unsigned int u_int8_t;
# 38 "/usr/include/sys/types.h"
typedef __u_long u_long;
# 40 "/usr/include/sys/types.h"
typedef __u_quad_t u_quad_t;
# 36 "/usr/include/sys/types.h"
typedef __u_short u_short;
# 82 "/usr/include/sys/types.h"
typedef __uid_t uid_t;
# 153 "/usr/include/sys/types.h"
typedef unsigned int uint;
# 151 "/usr/include/sys/types.h"
typedef unsigned long int ulong;
# 152 "/usr/include/sys/types.h"
typedef unsigned short int ushort;
# 46 "/usr/include/bits/pthreadtypes.h"
struct __attribute__((aligned(__alignof__(void *)))) __pthread_internal_slist
{
struct __pthread_internal_slist * __next;
};
# 54 "/usr/include/bits/pthreadtypes.h"
struct __attribute__((aligned(__alignof__(int)))) __pthread_mutex_s
{
int __lock;
unsigned int __count;
int __owner;
int __kind;
unsigned int __nusers;
};
# 302 "mysql_com.h"
struct __attribute__((aligned(__alignof__(unsigned long int)), aligned(__alignof__(double)))) rand_struct
{
...
...
@@ -419,7 +111,7 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
unsigned int first_block_usage;
void (* error_handler)(void);
};
# 23
6
"mysql.h"
# 23
2
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long long int)))) st_mysql
{
NET net;
...
...
@@ -464,7 +156,7 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
my_bool * unbuffered_fetch_owner;
struct st_mysql_stmt * current_stmt;
};
# 57
5
"mysql.h"
# 57
1
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long int)))) st_mysql_bind
{
unsigned long int * length;
...
...
@@ -484,7 +176,7 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
void (* fetch_result)(struct st_mysql_bind *, unsigned char * * row);
void (* skip_result)(struct st_mysql_bind *, MYSQL_FIELD *, unsigned char * * row);
};
# 14
5
"mysql.h"
# 14
1
"mysql.h"
struct __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__alignof__(void *)))) st_mysql_data
{
my_ulonglong rows;
...
...
@@ -493,7 +185,7 @@ struct __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__al
MEM_ROOT alloc;
MYSQL_ROWS * * prev_ptr;
};
# 9
7
"mysql.h"
# 9
3
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long int)))) st_mysql_field
{
char * name;
...
...
@@ -517,7 +209,7 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
unsigned int charsetnr;
enum enum_field_types type;
};
# 32
7
"mysql.h"
# 32
3
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long int)))) st_mysql_manager
{
NET net;
...
...
@@ -535,7 +227,7 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
int net_buf_size;
char last_error[256];
};
# 6
52
"mysql.h"
# 6
48
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)))) st_mysql_methods
{
my_bool (* read_query_result)(MYSQL * mysql);
...
...
@@ -554,7 +246,7 @@ struct __attribute__((aligned(__alignof__(void *)))) st_mysql_methods
my_bool (* next_result)(MYSQL * mysql);
int (* read_change_user_result)(MYSQL * mysql, char * buff, char const * passwd);
};
# 16
6
"mysql.h"
# 16
2
"mysql.h"
struct __attribute__((aligned(__alignof__(unsigned long int)), aligned(__alignof__(void *)))) st_mysql_options
{
unsigned int connect_timeout;
...
...
@@ -596,13 +288,13 @@ struct __attribute__((aligned(__alignof__(unsigned long int)), aligned(__alignof
int (* local_infile_error)(void *, char *, unsigned int);
void * local_infile_userdata;
};
# 3
41
"mysql.h"
# 3
37
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)))) st_mysql_parameters
{
unsigned long int * p_max_allowed_packet;
unsigned long int * p_net_buffer_length;
};
# 29
6
"mysql.h"
# 29
2
"mysql.h"
struct __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__alignof__(void *)))) st_mysql_res
{
my_ulonglong row_count;
...
...
@@ -620,14 +312,14 @@ struct __attribute__((aligned(__alignof__(unsigned long long int)), aligned(__al
my_bool unbuffered_fetch_cancelled;
struct st_mysql_methods const * methods;
};
# 13
5
"mysql.h"
# 13
1
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long int)))) st_mysql_rows
{
struct st_mysql_rows * next;
MYSQL_ROW data;
unsigned long int length;
};
#
600
"mysql.h"
#
596
"mysql.h"
struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned long long int)))) st_mysql_stmt
{
MEM_ROOT mem_root;
...
...
@@ -734,18 +426,6 @@ struct __attribute__((aligned(__alignof__(void *)), aligned(__alignof__(unsigned
unsigned int left;
unsigned int size;
};
# 121 "/usr/include/time.h"
struct __attribute__((aligned(__alignof__(long int)))) timespec
{
__time_t tv_sec;
long int tv_nsec;
};
# 69 "/usr/include/bits/time.h"
struct __attribute__((aligned(__alignof__(long int)))) timeval
{
__time_t tv_sec;
__suseconds_t tv_usec;
};
# 313 "mysql_com.h"
enum Item_result
{
...
...
@@ -788,7 +468,7 @@ enum enum_mysql_set_option
MYSQL_OPTION_MULTI_STATEMENTS_ON = 0,
MYSQL_OPTION_MULTI_STATEMENTS_OFF = 1,
};
# 56
7
"mysql.h"
# 56
3
"mysql.h"
enum enum_mysql_stmt_state
{
MYSQL_STMT_INIT_DONE = 1,
...
...
@@ -838,7 +518,7 @@ enum enum_server_command
COM_SET_OPTION = 27,
COM_END = 28,
};
# 63
9
"mysql.h"
# 63
5
"mysql.h"
enum enum_stmt_attr_type
{
STMT_ATTR_UPDATE_MAX_LENGTH = 0,
...
...
@@ -854,7 +534,7 @@ enum mysql_enum_shutdown_level
SHUTDOWN_WAIT_CRITICAL_BUFFERS = (((unsigned char)((1 << 3)) << 1) + 1),
KILL_CONNECTION = 255,
};
# 15
5
"mysql.h"
# 15
1
"mysql.h"
enum mysql_option
{
MYSQL_OPT_CONNECT_TIMEOUT = 0,
...
...
@@ -877,7 +557,7 @@ enum mysql_option
MYSQL_SET_CLIENT_IP = 17,
MYSQL_SECURE_AUTH = 18,
};
# 21
8
"mysql.h"
# 21
4
"mysql.h"
enum mysql_protocol_type
{
MYSQL_PROTOCOL_DEFAULT = 0,
...
...
@@ -886,14 +566,14 @@ enum mysql_protocol_type
MYSQL_PROTOCOL_PIPE = 3,
MYSQL_PROTOCOL_MEMORY = 4,
};
# 22
8
"mysql.h"
# 22
4
"mysql.h"
enum mysql_rpl_type
{
MYSQL_RPL_MASTER = 0,
MYSQL_RPL_SLAVE = 1,
MYSQL_RPL_ADMIN = 2,
};
# 2
13
"mysql.h"
# 2
09
"mysql.h"
enum mysql_status
{
MYSQL_STATUS_READY = 0,
...
...
@@ -916,12 +596,6 @@ extern void get_salt_from_password_323(unsigned long int * res, char const * pas
extern char * get_tty_password(char * opt_message);
# 30 "typelib.h"
extern char const * get_type(TYPELIB * typelib, unsigned int);
# 41 "/usr/include/sys/sysmacros.h"
extern unsigned int gnu_dev_major(unsigned long long int);
# 53 "/usr/include/sys/sysmacros.h"
extern unsigned long long int gnu_dev_makedev(unsigned int, unsigned int);
# 47 "/usr/include/sys/sysmacros.h"
extern unsigned int gnu_dev_minor(unsigned long long int);
# 355 "mysql_com.h"
extern void hash_password(unsigned long int * to, char const * password, unsigned int);
# 31 "my_list.h"
...
...
@@ -968,253 +642,253 @@ extern double my_rnd(struct rand_struct *);
extern void my_thread_end(void);
# 380 "mysql_com.h"
extern my_bool my_thread_init(void);
# 5
43
"mysql.h"
# 5
39
"mysql.h"
extern void myodbc_remove_escape(MYSQL * mysql, char * name);
# 48
5
"mysql.h"
# 48
1
"mysql.h"
extern int mysql_add_slave(MYSQL * mysql, char const * host, unsigned int, char const * user, char const * passwd);
# 39
7
"mysql.h"
# 39
3
"mysql.h"
extern my_ulonglong mysql_affected_rows(MYSQL * mysql);
# 72
4
"mysql.h"
# 72
0
"mysql.h"
extern my_bool mysql_autocommit(MYSQL * mysql, my_bool);
# 4
12
"mysql.h"
# 4
08
"mysql.h"
extern my_bool mysql_change_user(MYSQL * mysql, char const * user, char const * passwd, char const * db);
# 40
5
"mysql.h"
# 40
1
"mysql.h"
extern char const * mysql_character_set_name(MYSQL * mysql);
# 72
7
"mysql.h"
# 72
3
"mysql.h"
extern void mysql_close(MYSQL * sock);
# 7
22
"mysql.h"
# 7
18
"mysql.h"
extern my_bool mysql_commit(MYSQL * mysql);
# 51
4
"mysql.h"
# 51
0
"mysql.h"
extern void mysql_data_seek(MYSQL_RES * result, my_ulonglong);
# 5
32
"mysql.h"
# 5
28
"mysql.h"
extern void mysql_debug(char const * debug);
# 4
71
"mysql.h"
# 4
67
"mysql.h"
extern void mysql_disable_reads_from_master(MYSQL * mysql);
# 46
5
"mysql.h"
# 46
1
"mysql.h"
extern void mysql_disable_rpl_parse(MYSQL * mysql);
# 4
93
"mysql.h"
# 4
89
"mysql.h"
extern int mysql_dump_debug_info(MYSQL * mysql);
# 54
5
"mysql.h"
# 54
1
"mysql.h"
extern my_bool mysql_embedded(void);
# 4
70
"mysql.h"
# 4
66
"mysql.h"
extern void mysql_enable_reads_from_master(MYSQL * mysql);
# 46
4
"mysql.h"
# 46
0
"mysql.h"
extern void mysql_enable_rpl_parse(MYSQL * mysql);
# 38
9
"mysql.h"
# 38
5
"mysql.h"
extern my_bool mysql_eof(MYSQL_RES * res);
# 39
9
"mysql.h"
# 39
5
"mysql.h"
extern unsigned int mysql_errno(MYSQL * mysql);
# 373 "mysql_com.h"
extern char const * mysql_errno_to_sqlstate(unsigned int);
#
400
"mysql.h"
#
396
"mysql.h"
extern char const * mysql_error(MYSQL * mysql);
# 52
5
"mysql.h"
# 52
1
"mysql.h"
extern unsigned long int mysql_escape_string(char * to, char const * from, unsigned long int);
# 5
22
"mysql.h"
# 5
18
"mysql.h"
extern MYSQL_FIELD * mysql_fetch_field(MYSQL_RES * result);
# 3
90
"mysql.h"
# 3
86
"mysql.h"
extern MYSQL_FIELD * mysql_fetch_field_direct(MYSQL_RES * res, unsigned int);
# 3
92
"mysql.h"
# 3
88
"mysql.h"
extern MYSQL_FIELD * mysql_fetch_fields(MYSQL_RES * res);
# 5
21
"mysql.h"
# 5
17
"mysql.h"
extern unsigned long int * mysql_fetch_lengths(MYSQL_RES * result);
# 5
20
"mysql.h"
# 5
16
"mysql.h"
extern MYSQL_ROW mysql_fetch_row(MYSQL_RES * result);
# 39
6
"mysql.h"
# 39
2
"mysql.h"
extern unsigned int mysql_field_count(MYSQL * mysql);
# 51
8
"mysql.h"
# 51
4
"mysql.h"
extern MYSQL_FIELD_OFFSET mysql_field_seek(MYSQL_RES * result, MYSQL_FIELD_OFFSET);
# 39
4
"mysql.h"
# 39
0
"mysql.h"
extern MYSQL_FIELD_OFFSET mysql_field_tell(MYSQL_RES * res);
# 5
13
"mysql.h"
# 5
09
"mysql.h"
extern void mysql_free_result(MYSQL_RES * result);
#
503
"mysql.h"
#
499
"mysql.h"
extern char const * mysql_get_client_info(void);
# 50
4
"mysql.h"
# 50
0
"mysql.h"
extern unsigned long int mysql_get_client_version(void);
# 50
5
"mysql.h"
# 50
1
"mysql.h"
extern char const * mysql_get_host_info(MYSQL * mysql);
# 3
71
"mysql.h"
# 3
67
"mysql.h"
extern MYSQL_PARAMETERS * mysql_get_parameters(void);
# 50
7
"mysql.h"
# 50
3
"mysql.h"
extern unsigned int mysql_get_proto_info(MYSQL * mysql);
#
502
"mysql.h"
#
498
"mysql.h"
extern char const * mysql_get_server_info(MYSQL * mysql);
# 50
6
"mysql.h"
# 50
2
"mysql.h"
extern unsigned long int mysql_get_server_version(MYSQL * mysql);
# 52
7
"mysql.h"
# 52
3
"mysql.h"
extern unsigned long int mysql_hex_string(char * to, char const * from, unsigned long int);
#
403
"mysql.h"
#
399
"mysql.h"
extern char const * mysql_info(MYSQL * mysql);
# 40
8
"mysql.h"
# 40
4
"mysql.h"
extern MYSQL * mysql_init(MYSQL * mysql);
# 39
8
"mysql.h"
# 39
4
"mysql.h"
extern my_ulonglong mysql_insert_id(MYSQL * mysql);
# 49
6
"mysql.h"
# 49
2
"mysql.h"
extern int mysql_kill(MYSQL * mysql, unsigned long int);
# 50
8
"mysql.h"
# 50
4
"mysql.h"
extern MYSQL_RES * mysql_list_dbs(MYSQL * mysql, char const * wild);
# 5
23
"mysql.h"
# 5
19
"mysql.h"
extern MYSQL_RES * mysql_list_fields(MYSQL * mysql, char const * table, char const * wild);
# 5
10
"mysql.h"
# 5
06
"mysql.h"
extern MYSQL_RES * mysql_list_processes(MYSQL * mysql);
# 50
9
"mysql.h"
# 50
5
"mysql.h"
extern MYSQL_RES * mysql_list_tables(MYSQL * mysql, char const * wild);
# 5
52
"mysql.h"
# 5
48
"mysql.h"
extern void mysql_manager_close(MYSQL_MANAGER * con);
# 5
53
"mysql.h"
# 5
49
"mysql.h"
extern int mysql_manager_command(MYSQL_MANAGER * con, char const * cmd, int);
# 54
7
"mysql.h"
# 54
3
"mysql.h"
extern MYSQL_MANAGER * mysql_manager_connect(MYSQL_MANAGER * con, char const * host, char const * user, char const * passwd, unsigned int);
# 55
5
"mysql.h"
# 55
1
"mysql.h"
extern int mysql_manager_fetch_line(MYSQL_MANAGER * con, char * res_buf, int);
# 54
6
"mysql.h"
# 54
2
"mysql.h"
extern MYSQL_MANAGER * mysql_manager_init(MYSQL_MANAGER * con);
# 4
31
"mysql.h"
# 4
27
"mysql.h"
extern my_bool mysql_master_query(MYSQL * mysql, char const * q, unsigned long int);
# 4
33
"mysql.h"
# 4
29
"mysql.h"
extern my_bool mysql_master_send_query(MYSQL * mysql, char const * q, unsigned long int);
# 72
5
"mysql.h"
# 72
1
"mysql.h"
extern my_bool mysql_more_results(MYSQL * mysql);
# 72
6
"mysql.h"
# 72
2
"mysql.h"
extern int mysql_next_result(MYSQL * mysql);
# 38
8
"mysql.h"
# 38
4
"mysql.h"
extern unsigned int mysql_num_fields(MYSQL_RES * res);
# 38
7
"mysql.h"
# 38
3
"mysql.h"
extern my_ulonglong mysql_num_rows(MYSQL_RES * res);
# 5
33
"mysql.h"
# 5
29
"mysql.h"
extern char * mysql_odbc_escape_string(MYSQL * mysql, char * to, unsigned long int, char const * from, unsigned long int, void * param, char * (* extend_buffer)(void *, char * to, unsigned long int * length));
# 5
11
"mysql.h"
# 5
07
"mysql.h"
extern int mysql_options(MYSQL * mysql, enum mysql_option, char const * arg);
#
500
"mysql.h"
#
496
"mysql.h"
extern int mysql_ping(MYSQL * mysql);
# 7
9
"mysql.h"
# 7
5
"mysql.h"
extern unsigned int mysql_port;
# 4
22
"mysql.h"
# 4
18
"mysql.h"
extern int mysql_query(MYSQL * mysql, char const * q);
# 55
8
"mysql.h"
# 55
4
"mysql.h"
extern my_bool mysql_read_query_result(MYSQL * mysql);
# 4
73
"mysql.h"
# 4
69
"mysql.h"
extern my_bool mysql_reads_from_master_enabled(MYSQL * mysql);
# 41
4
"mysql.h"
# 41
0
"mysql.h"
extern MYSQL * mysql_real_connect(MYSQL * mysql, char const * host, char const * user, char const * passwd, char const * db, unsigned int, char const * unix_socket, unsigned long int);
# 52
9
"mysql.h"
# 52
5
"mysql.h"
extern unsigned long int mysql_real_escape_string(MYSQL * mysql, char * to, char const * from, unsigned long int);
# 42
5
"mysql.h"
# 42
1
"mysql.h"
extern int mysql_real_query(MYSQL * mysql, char const * q, unsigned long int);
# 49
4
"mysql.h"
# 49
0
"mysql.h"
extern int mysql_refresh(MYSQL * mysql, unsigned int);
# 7
23
"mysql.h"
# 7
19
"mysql.h"
extern my_bool mysql_rollback(MYSQL * mysql);
# 51
6
"mysql.h"
# 51
2
"mysql.h"
extern MYSQL_ROW_OFFSET mysql_row_seek(MYSQL_RES * result, MYSQL_ROW_OFFSET);
# 3
93
"mysql.h"
# 3
89
"mysql.h"
extern MYSQL_ROW_OFFSET mysql_row_tell(MYSQL_RES * res);
# 46
7
"mysql.h"
# 46
3
"mysql.h"
extern int mysql_rpl_parse_enabled(MYSQL * mysql);
# 47
8
"mysql.h"
# 47
4
"mysql.h"
extern my_bool mysql_rpl_probe(MYSQL * mysql);
# 47
5
"mysql.h"
# 47
1
"mysql.h"
extern enum mysql_rpl_type mysql_rpl_query_type(char const * q, int);
# 4
21
"mysql.h"
# 4
17
"mysql.h"
extern int mysql_select_db(MYSQL * mysql, char const * db);
# 4
23
"mysql.h"
# 4
19
"mysql.h"
extern int mysql_send_query(MYSQL * mysql, char const * q, unsigned long int);
# 35
8
"mysql.h"
# 35
4
"mysql.h"
extern void mysql_server_end(void);
# 35
7
"mysql.h"
# 35
3
"mysql.h"
extern int mysql_server_init(int, char * * argv, char * * groups);
# 40
6
"mysql.h"
# 40
2
"mysql.h"
extern int mysql_set_character_set(MYSQL * mysql, char const * csname);
# 45
6
"mysql.h"
# 45
2
"mysql.h"
extern void mysql_set_local_infile_default(MYSQL * mysql);
# 44
5
"mysql.h"
# 44
1
"mysql.h"
extern void mysql_set_local_infile_handler(MYSQL * mysql, int (* local_infile_init)(void * *, char const *, void *), int (* local_infile_read)(void *, char *, unsigned int), void (* local_infile_end)(void), int (* local_infile_error)(void *, char *, unsigned int), void *);
# 4
81
"mysql.h"
# 4
77
"mysql.h"
extern int mysql_set_master(MYSQL * mysql, char const * host, unsigned int, char const * user, char const * passwd);
# 49
7
"mysql.h"
# 49
3
"mysql.h"
extern int mysql_set_server_option(MYSQL * mysql, enum enum_mysql_set_option);
# 4
90
"mysql.h"
# 4
86
"mysql.h"
extern int mysql_shutdown(MYSQL * mysql, enum mysql_enum_shutdown_level);
# 43
6
"mysql.h"
# 43
2
"mysql.h"
extern my_bool mysql_slave_query(MYSQL * mysql, char const * q, unsigned long int);
# 43
8
"mysql.h"
# 43
4
"mysql.h"
extern my_bool mysql_slave_send_query(MYSQL * mysql, char const * q, unsigned long int);
#
401
"mysql.h"
#
397
"mysql.h"
extern char const * mysql_sqlstate(MYSQL * mysql);
# 40
9
"mysql.h"
# 40
5
"mysql.h"
extern my_bool mysql_ssl_set(MYSQL * mysql, char const * key, char const * cert, char const * ca, char const * capath, char const * cipher);
#
501
"mysql.h"
#
497
"mysql.h"
extern char const * mysql_stat(MYSQL * mysql);
# 71
8
"mysql.h"
# 71
4
"mysql.h"
extern my_ulonglong mysql_stmt_affected_rows(MYSQL_STMT * stmt);
# 69
6
"mysql.h"
# 69
2
"mysql.h"
extern my_bool mysql_stmt_attr_get(MYSQL_STMT * stmt, enum enum_stmt_attr_type, void * attr);
# 6
93
"mysql.h"
# 6
89
"mysql.h"
extern my_bool mysql_stmt_attr_set(MYSQL_STMT * stmt, enum enum_stmt_attr_type, void const * attr);
# 69
9
"mysql.h"
# 69
5
"mysql.h"
extern my_bool mysql_stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
#
700
"mysql.h"
#
696
"mysql.h"
extern my_bool mysql_stmt_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
#
701
"mysql.h"
#
697
"mysql.h"
extern my_bool mysql_stmt_close(MYSQL_STMT * stmt);
# 71
6
"mysql.h"
# 71
2
"mysql.h"
extern void mysql_stmt_data_seek(MYSQL_STMT * stmt, my_ulonglong);
# 7
10
"mysql.h"
# 7
06
"mysql.h"
extern unsigned int mysql_stmt_errno(MYSQL_STMT * stmt);
# 7
11
"mysql.h"
# 7
07
"mysql.h"
extern char const * mysql_stmt_error(MYSQL_STMT * stmt);
# 68
6
"mysql.h"
# 68
2
"mysql.h"
extern int mysql_stmt_execute(MYSQL_STMT * stmt);
# 68
7
"mysql.h"
# 68
3
"mysql.h"
extern int mysql_stmt_fetch(MYSQL_STMT * stmt);
# 68
8
"mysql.h"
# 68
4
"mysql.h"
extern int mysql_stmt_fetch_column(MYSQL_STMT * stmt, MYSQL_BIND * bind, unsigned int, unsigned long int);
# 7
20
"mysql.h"
# 7
16
"mysql.h"
extern unsigned int mysql_stmt_field_count(MYSQL_STMT * stmt);
#
703
"mysql.h"
#
699
"mysql.h"
extern my_bool mysql_stmt_free_result(MYSQL_STMT * stmt);
# 6
83
"mysql.h"
# 6
79
"mysql.h"
extern MYSQL_STMT * mysql_stmt_init(MYSQL * mysql);
# 71
9
"mysql.h"
# 71
5
"mysql.h"
extern my_ulonglong mysql_stmt_insert_id(MYSQL_STMT * stmt);
# 71
7
"mysql.h"
# 71
3
"mysql.h"
extern my_ulonglong mysql_stmt_num_rows(MYSQL_STMT * stmt);
# 6
92
"mysql.h"
# 6
88
"mysql.h"
extern unsigned long int mysql_stmt_param_count(MYSQL_STMT * stmt);
# 70
9
"mysql.h"
# 70
5
"mysql.h"
extern MYSQL_RES * mysql_stmt_param_metadata(MYSQL_STMT * stmt);
# 68
4
"mysql.h"
# 68
0
"mysql.h"
extern int mysql_stmt_prepare(MYSQL_STMT * stmt, char const * query, unsigned long int);
#
702
"mysql.h"
#
698
"mysql.h"
extern my_bool mysql_stmt_reset(MYSQL_STMT * stmt);
# 70
8
"mysql.h"
# 70
4
"mysql.h"
extern MYSQL_RES * mysql_stmt_result_metadata(MYSQL_STMT * stmt);
# 7
13
"mysql.h"
# 7
09
"mysql.h"
extern MYSQL_ROW_OFFSET mysql_stmt_row_seek(MYSQL_STMT * stmt, MYSQL_ROW_OFFSET);
# 71
5
"mysql.h"
# 71
1
"mysql.h"
extern MYSQL_ROW_OFFSET mysql_stmt_row_tell(MYSQL_STMT * stmt);
# 70
4
"mysql.h"
# 70
0
"mysql.h"
extern my_bool mysql_stmt_send_long_data(MYSQL_STMT * stmt, unsigned int, char const * data, unsigned long int);
# 7
12
"mysql.h"
# 7
08
"mysql.h"
extern char const * mysql_stmt_sqlstate(MYSQL_STMT * stmt);
# 6
91
"mysql.h"
# 6
87
"mysql.h"
extern int mysql_stmt_store_result(MYSQL_STMT * stmt);
# 42
7
"mysql.h"
# 42
3
"mysql.h"
extern MYSQL_RES * mysql_store_result(MYSQL * mysql);
# 3
80
"mysql.h"
# 3
76
"mysql.h"
extern void mysql_thread_end(void);
# 40
4
"mysql.h"
# 40
0
"mysql.h"
extern unsigned long int mysql_thread_id(MYSQL * mysql);
# 37
9
"mysql.h"
# 37
5
"mysql.h"
extern my_bool mysql_thread_init(void);
# 54
4
"mysql.h"
# 54
0
"mysql.h"
extern unsigned int mysql_thread_safe(void);
#
80
"mysql.h"
#
76
"mysql.h"
extern char * mysql_unix_port;
# 42
8
"mysql.h"
# 42
4
"mysql.h"
extern MYSQL_RES * mysql_use_result(MYSQL * mysql);
#
402
"mysql.h"
#
398
"mysql.h"
extern unsigned int mysql_warning_count(MYSQL * mysql);
# 284 "mysql_com.h"
extern void net_clear(NET * net);
...
...
@@ -1226,19 +900,15 @@ extern my_bool net_flush(NET * net);
extern int net_real_write(NET * net, char const * packet, unsigned long int);
# 285 "mysql_com.h"
extern my_bool net_realloc(NET * net, unsigned long int);
# 75
5
"mysql.h"
# 75
1
"mysql.h"
extern unsigned long int net_safe_read(MYSQL * mysql);
# 288 "mysql_com.h"
extern my_bool net_write_command(NET * net, unsigned char, char const * header, unsigned long int, char const * packet, unsigned long int);
# 121 "/usr/include/sys/select.h"
extern int pselect(int, fd_set * restrict __readfds, fd_set * restrict __writefds, fd_set * restrict __exceptfds, struct timespec const * restrict __timeout, __sigset_t const * restrict __sigmask);
# 350 "mysql_com.h"
extern void randominit(struct rand_struct *, unsigned long int, unsigned long int);
# 364 "mysql_com.h"
extern void scramble(char * to, char const * message, char const * password);
# 357 "mysql_com.h"
extern void scramble_323(char * to, char const * message, char const * password);
# 109 "/usr/include/sys/select.h"
extern int select(int, fd_set * restrict __readfds, fd_set * restrict __writefds, fd_set * restrict __exceptfds, struct timeval * restrict __timeout);
# 32 "typelib.h"
extern TYPELIB sql_protocol_typelib;
mysql-test/lib/mtr_io.pl
View file @
07978008
...
...
@@ -37,18 +37,16 @@ sub mtr_get_pid_from_file ($) {
open
(
FILE
,
'
<
',
$pid_file_path
)
or
mtr_error
("
can't open file
\"
$pid_file_path
\"
: $!
");
# Read pid number from file
my
$pid
=
<
FILE
>
;
chomp
(
$pid
)
if
defined
$pid
;
close
FILE
;
return
$pid
if
defined
$pid
&&
$pid
ne
''
;
return
$pid
if
$pid
=~
/^(\d+)/
;
mtr_debug
("
Pid file '
$pid_file_path
'
is empty.
"
.
"
Sleeping
$timeout
second(s)...
");
mtr_debug
("
Pid file '
$pid_file_path
'
does not yet contain pid number.
\n
"
.
"
Sleeping
$timeout
second(s)
more
...
");
sleep
(
1
);
sleep
(
$timeout
);
}
mtr_error
("
Pid file '
$pid_file_path
' is corrupted.
"
.
...
...
mysql-test/lib/mtr_process.pl
View file @
07978008
...
...
@@ -438,6 +438,10 @@ sub mtr_kill_leftovers () {
while
(
my
$elem
=
readdir
(
RUNDIR
)
)
{
# Only read pid from files that end with .pid
if
(
$elem
=~
/.*[.]pid$/
)
{
my
$pidfile
=
"
$rundir
/
$elem
";
if
(
-
f
$pidfile
)
...
...
@@ -459,6 +463,12 @@ sub mtr_kill_leftovers () {
}
}
}
else
{
mtr_warning
("
Found non pid file
$elem
in
$rundir
");
next
;
}
}
closedir
(
RUNDIR
);
if
(
@pids
)
...
...
mysql-test/mysql-test-run.pl
View file @
07978008
...
...
@@ -1801,14 +1801,16 @@ sub environment_setup () {
# ----------------------------------------------------
# Setup env so childs can execute mysql_fix_system_tables
# ----------------------------------------------------
if
(
!
$glob_win32
)
{
my
$cmdline_mysql_fix_system_tables
=
"
$exe_mysql_fix_system_tables
--no-defaults --host=localhost
"
.
"
--user=root --password=
"
.
"
--basedir=
$glob_basedir
--bindir=
$path_client_bindir
--verbose
"
.
"
--port=
$master
->[0]->{'port'}
"
.
"
--socket=
$master
->[0]->{'path_sock'}
";
$ENV
{'
MYSQL_FIX_SYSTEM_TABLES
'}
=
$cmdline_mysql_fix_system_tables
;
}
# ----------------------------------------------------
# Setup env so childs can execute my_print_defaults
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment