summaryrefslogtreecommitdiff
path: root/sql/rpl_filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/rpl_filter.h')
-rw-r--r--sql/rpl_filter.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/rpl_filter.h b/sql/rpl_filter.h
index 20f5ce8efc4..3a261db6754 100644
--- a/sql/rpl_filter.h
+++ b/sql/rpl_filter.h
@@ -48,7 +48,9 @@ public:
/* Checks - returns true if ok to replicate/log */
- bool tables_ok(const char* db, TABLE_LIST* tables);
+#ifndef MYSQL_CLIENT
+ bool tables_ok(const char* db, TABLE_LIST *tables);
+#endif
bool db_ok(const char* db);
bool db_ok_with_wild_table(const char *db);
@@ -75,6 +77,7 @@ public:
void get_wild_do_table(String* str);
void get_wild_ignore_table(String* str);
+ bool rewrite_db_is_empty();
const char* get_rewrite_db(const char* db, size_t *new_len);
I_List<i_string>* get_do_db();