handler.cc:

Fix compilation error if HAVE_REPLICATION is not defined


sql/handler.cc:
  Fix compilation error if HAVE_REPLICATION is not defined
This commit is contained in:
unknown 2005-04-27 15:09:41 +03:00
commit 05bfcf65a5

View file

@ -2412,6 +2412,7 @@ TYPELIB *ha_known_exts(void)
return &known_extensions;
}
#ifdef HAVE_REPLICATION
/*
Reports to table handlers up to which position we have sent the binlog
to a slave in replication
@ -2468,3 +2469,4 @@ int ha_repl_report_replication_stop(THD *thd)
return 0;
}
#endif /* HAVE_REPLICATION */