diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-04-27 15:09:41 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-04-27 15:09:41 +0300 |
commit | 05bfcf65a5b93ec8de46c224c1240695b3bf8165 (patch) | |
tree | b09e8d3406d0f409f2ff79bcd0d9535cf102ffc6 | |
parent | 979d7e4be99a1856c33452ac0f3d059f4a670877 (diff) | |
download | mariadb-git-05bfcf65a5b93ec8de46c224c1240695b3bf8165.tar.gz |
handler.cc:
Fix compilation error if HAVE_REPLICATION is not defined
sql/handler.cc:
Fix compilation error if HAVE_REPLICATION is not defined
-rw-r--r-- | sql/handler.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 95fd4d97616..3095aeb9476 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -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 */ |