diff options
author | sven@riska.(none) <> | 2008-02-04 14:37:34 +0100 |
---|---|---|
committer | sven@riska.(none) <> | 2008-02-04 14:37:34 +0100 |
commit | a25028ef646b58ac8f4a81cb9a792f6130db1d52 (patch) | |
tree | 9de5c7f5f21dc8265df8c9c5eb07403492b762b2 /sql/log_event.h | |
parent | 4371a7888db6a788eb45a4f07e8da1f3652c38a5 (diff) | |
parent | 30cd549e3beb01b05fd40188c572ce13f692e999 (diff) | |
download | mariadb-git-a25028ef646b58ac8f4a81cb9a792f6130db1d52.tar.gz |
Merge riska.(none):/home/sven/bktip/5.1-new-rpl
into riska.(none):/home/sven/bk/b34141-mysqlbinlog_4.1_binlogs/5.1-new-rpl
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index e0f7a0517c4..59d58d47bad 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -152,11 +152,11 @@ struct old_sql_ex struct sql_ex_info { sql_ex_info() {} /* Remove gcc warning */ - char* field_term; - char* enclosed; - char* line_term; - char* line_start; - char* escaped; + const char* field_term; + const char* enclosed; + const char* line_term; + const char* line_start; + const char* escaped; int cached_new_format; uint8 field_term_len,enclosed_len,line_term_len,line_start_len, escaped_len; char opt_flags; @@ -171,7 +171,7 @@ struct sql_ex_info line_start_len + escaped_len + 6 : 7); } bool write_data(IO_CACHE* file); - char* init(char* buf,char* buf_end,bool use_new_format); + const char* init(const char* buf, const char* buf_end, bool use_new_format); bool new_format() { return ((cached_new_format != -1) ? cached_new_format : |