diff options
author | sasha@mysql.sashanet.com <> | 2001-08-06 16:47:48 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-08-06 16:47:48 -0600 |
commit | d9737f20f838f189ef1f3d25df7739770f3b52b9 (patch) | |
tree | 3899db9196d895b67af082ace2454b1268b01d70 /sql/log_event.h | |
parent | 31f269f1dde00a510bdd4f3a098b424b7d8126bd (diff) | |
download | mariadb-git-d9737f20f838f189ef1f3d25df7739770f3b52b9.tar.gz |
misc bug fixes
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 2165a620fa3..d16d76bed37 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -210,6 +210,7 @@ public: { return 0; } virtual Log_event_type get_type_code() = 0; virtual bool is_valid() = 0; + virtual bool get_cache_stmt() { return 0; } Log_event(const char* buf); #ifndef MYSQL_CLIENT Log_event(THD* thd_arg, uint16 flags_arg = 0); @@ -277,6 +278,7 @@ public: const char* get_db() { return db; } void pack_info(String* packet); int exec_event(struct st_master_info* mi); + bool get_cache_stmt() { return cache_stmt; } #endif Query_log_event(const char* buf, int event_len); |