Commit d976a5d5 authored by serg@serg.mylan's avatar serg@serg.mylan

classes that are compiled conditionally in log_event.cc must be defined...

classes that are compiled conditionally in log_event.cc must be defined conditionally in log_event.h
parent 543e1d7b
***************
*** 50,55 ****
OPT_NDBCLUSTER, OPT_NDB_CONNECTSTRING,
#endif
OPT_TRIGGERS,
OPT_IGNORE_TABLE,OPT_INSERT_IGNORE,OPT_SHOW_WARNINGS,OPT_DROP_DATABASE,
! OPT_TZ_UTC, OPT_AUTO_CLOSE
};
--- 50,55 ----
OPT_NDBCLUSTER, OPT_NDB_CONNECTSTRING,
#endif
OPT_TRIGGERS,
OPT_IGNORE_TABLE,OPT_INSERT_IGNORE,OPT_SHOW_WARNINGS,OPT_DROP_DATABASE,
! OPT_TZ_UTC, OPT_AUTO_CLOSE, OPT_SSL_VERIFY_SERVER_CERT
};
...@@ -1635,6 +1635,8 @@ public: ...@@ -1635,6 +1635,8 @@ public:
#endif #endif
char *str_to_hex(char *to, const char *from, uint len); char *str_to_hex(char *to, const char *from, uint len);
#ifdef HAVE_ROW_BASED_REPLICATION
/***************************************************************************** /*****************************************************************************
Table map log event class Table map log event class
...@@ -1643,7 +1645,6 @@ char *str_to_hex(char *to, const char *from, uint len); ...@@ -1643,7 +1645,6 @@ char *str_to_hex(char *to, const char *from, uint len);
identifier (an integer number). identifier (an integer number).
****************************************************************************/ ****************************************************************************/
class Table_map_log_event : public Log_event class Table_map_log_event : public Log_event
{ {
public: public:
...@@ -1750,6 +1751,7 @@ private: ...@@ -1750,6 +1751,7 @@ private:
****************************************************************************/ ****************************************************************************/
class Rows_log_event : public Log_event class Rows_log_event : public Log_event
{ {
public: public:
...@@ -2121,5 +2123,6 @@ private: ...@@ -2121,5 +2123,6 @@ private:
#endif #endif
}; };
#endif /* HAVE_ROW_BASED_REPLICATION */
#endif /* _log_event_h */ #endif /* _log_event_h */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment