diff options
author | monty@hundin.mysql.fi <> | 2001-09-15 16:22:34 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-09-15 16:22:34 +0300 |
commit | 0d72e5440fdf6a2b99c36a9c8013bc2dc04ee23a (patch) | |
tree | 8783b1d57a27183a301b7fdfaaf671cf498a7e8e /sql/log_event.h | |
parent | c55cde7c1ca4acdb6b945c153905081a7075f91f (diff) | |
download | mariadb-git-0d72e5440fdf6a2b99c36a9c8013bc2dc04ee23a.tar.gz |
Portability fixes
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index ef795e75e2c..d938bced742 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -72,7 +72,7 @@ struct sql_ex_info char* line_term; char* line_start; char* escaped; - uchar field_term_len,enclosed_len,line_term_len,line_start_len, + uint8 field_term_len,enclosed_len,line_term_len,line_start_len, escaped_len; char opt_flags; char empty_flags; @@ -280,7 +280,7 @@ public: pthread_mutex_t* log_lock); void set_log_seq(THD* thd, MYSQL_LOG* log); virtual void pack_info(String* packet); - int net_send(THD* thd, const char* log_name, ulong pos); + int net_send(THD* thd, const char* log_name, my_off_t pos); static void init_show_field_list(List<Item>* field_list); virtual int exec_event(struct st_master_info* mi); virtual const char* get_db() |