diff options
author | monty@hundin.mysql.fi <> | 2002-01-30 16:37:47 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-01-30 16:37:47 +0200 |
commit | 79796e989f13c98df32e13d404571b76b1ae6dab (patch) | |
tree | 3ca7f6fddbb9bdc0b635f243af69c6606924c3c2 /sql/sql_class.h | |
parent | c396824b2a733651acbe5a23a40a0e59ce628678 (diff) | |
parent | 3457b6fde0ee4c08a45a2a1584522b260c444768 (diff) | |
download | mariadb-git-79796e989f13c98df32e13d404571b76b1ae6dab.tar.gz |
Merge from 3.23.48 tree
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 4e12cefa271..8e663a0cdf5 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -103,10 +103,12 @@ public: bool write(THD *thd, const char *query, uint query_length, time_t query_start=0); bool write(Log_event* event_info); // binary log write - bool write(IO_CACHE *cache); + bool write(THD *thd, IO_CACHE *cache); - //v stands for vector - //invoked as appendv(buf1,len1,buf2,len2,...,bufn,lenn,0) + /* + v stands for vector + invoked as appendv(buf1,len1,buf2,len2,...,bufn,lenn,0) + */ bool appendv(const char* buf,uint len,...); bool append(Log_event* ev); |