diff options
author | unknown <guilhem@gbichot4.local> | 2008-02-18 23:35:17 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2008-02-18 23:35:17 +0100 |
commit | 34fff04d033e042ee89f7ffcd326285e59495c6a (patch) | |
tree | 02fdc79840b4f1bb2f1ceb90b37a47fc51a5aeed /client/mysqltest.c | |
parent | d37d49bc543e933def3e460b1d6c156b3ec309cd (diff) | |
parent | 85213f6235aa344f7861cc2f9a151869e041cb9e (diff) | |
download | mariadb-git-34fff04d033e042ee89f7ffcd326285e59495c6a.tar.gz |
Merge gbichot4.local:/home/mysql_src/mysql-5.1-build-gca
into gbichot4.local:/home/mysql_src/mysql-maria-monty
client/mysqldump.c:
Auto merged
client/mysqltest.c:
Auto merged
extra/replace.c:
Auto merged
include/my_sys.h:
Auto merged
libmysql/libmysql.c:
Auto merged
mysys/my_getopt.c:
Auto merged
mysys/thr_lock.c:
Auto merged
sql/set_var.cc:
Auto merged
sql/sql_plugin.cc:
Auto merged
storage/myisam/mi_check.c:
Auto merged
storage/myisam/mi_dynrec.c:
Auto merged
storage/myisam/mi_search.c:
Auto merged
storage/myisam/mi_update.c:
Auto merged
storage/myisam/mi_write.c:
Auto merged
storage/myisam/myisamlog.c:
Auto merged
storage/myisam/myisampack.c:
Auto merged
tests/mysql_client_test.c:
Auto merged
include/my_global.h:
merge
storage/myisam/myisamdef.h:
merge
Diffstat (limited to 'client/mysqltest.c')
-rw-r--r-- | client/mysqltest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 55d8dc22c41..04a5eb43a9e 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -4226,7 +4226,7 @@ void do_connect(struct st_command *command) { int con_port= opt_port; char *con_options; - bool con_ssl= 0, con_compress= 0; + my_bool con_ssl= 0, con_compress= 0; struct st_connection* con_slot; static DYNAMIC_STRING ds_connection_name; @@ -5533,7 +5533,7 @@ void fix_win_paths(const char *val, int len) */ void append_field(DYNAMIC_STRING *ds, uint col_idx, MYSQL_FIELD* field, - const char* val, ulonglong len, bool is_null) + const char* val, ulonglong len, my_bool is_null) { if (col_idx < max_replace_column && replace_column[col_idx]) { @@ -7457,12 +7457,12 @@ void free_replace() typedef struct st_replace { - bool found; + my_bool found; struct st_replace *next[256]; } REPLACE; typedef struct st_replace_found { - bool found; + my_bool found; char *replace_string; uint to_offset; int from_offset; |