summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authorunknown <grog@mysql.com[grog]>2006-04-13 17:22:56 +0930
committerunknown <grog@mysql.com[grog]>2006-04-13 17:22:56 +0930
commit365f6f6f03a247976eabd64fe9d8510b456647f4 (patch)
tree5068606c120d0affa61289212c97ed0321bc9003 /sql/handler.cc
parentce33555014b52d43b1f6911b24abf6ac0da62550 (diff)
downloadmariadb-git-365f6f6f03a247976eabd64fe9d8510b456647f4.tar.gz
foo2
sql/ha_innodb.cc: Import patch foo2 sql/ha_innodb.h: Import patch foo2 sql/handler.cc: Import patch foo2 sql/handler.h: Import patch foo2 sql/mysqld.cc: Import patch foo2 sql/set_var.cc: Import patch foo2 sql/sql_class.h: Import patch foo2 sql/sql_repl.cc: Import patch foo2
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc53
1 files changed, 0 insertions, 53 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index 627117a65a5..b40934ea194 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -2684,56 +2684,3 @@ 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
-
- SYNOPSIS
- ha_repl_report_sent_binlog()
- thd thread doing the binlog communication to the slave
- log_file_name binlog file name
- end_offse t the offset in the binlog file up to which we sent the
- contents to the slave
-
- NOTES
- Only works for InnoDB at the moment
-
- RETURN VALUE
- Always 0 (= success)
-*/
-
-int ha_repl_report_sent_binlog(THD *thd, char *log_file_name,
- my_off_t end_offset)
-{
-#ifdef HAVE_INNOBASE_DB
- return innobase_repl_report_sent_binlog(thd,log_file_name,end_offset);
-#else
- return 0;
-#endif
-}
-
-
-/*
- Reports to table handlers that we stop replication to a specific slave
-
- SYNOPSIS
- ha_repl_report_replication_stop()
- thd thread doing the binlog communication to the slave
-
- NOTES
- Does nothing at the moment
-
- RETURN VALUE
- Always 0 (= success)
-
- PARAMETERS
-*/
-
-int ha_repl_report_replication_stop(THD *thd)
-{
- return 0;
-}
-#endif /* HAVE_REPLICATION */