Commit eb67ecef authored by unknown's avatar unknown
Browse files

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


BitKeeper/deleted/.del-client_priv.h.rej~915a5a16fe10ef0:
  Delete: client/client_priv.h.rej
parent f3fc25f8
Loading
Loading
Loading
Loading

client/client_priv.h.rej

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
***************
*** 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
  };
+4 −1
Original line number Diff line number Diff line
@@ -1635,6 +1635,8 @@ class Unknown_log_event: public Log_event
#endif
char *str_to_hex(char *to, const char *from, uint len);

#ifdef HAVE_ROW_BASED_REPLICATION

/*****************************************************************************

  Table map log event class
@@ -1643,7 +1645,6 @@ char *str_to_hex(char *to, const char *from, uint len);
  identifier (an integer number).

 ****************************************************************************/

class Table_map_log_event : public Log_event
{
public:
@@ -1750,6 +1751,7 @@ class Table_map_log_event : public Log_event

 ****************************************************************************/


class Rows_log_event : public Log_event
{
public:
@@ -2121,5 +2123,6 @@ class Delete_rows_log_event : public Rows_log_event
#endif
};

#endif /* HAVE_ROW_BASED_REPLICATION */

#endif /* _log_event_h */