diff options
author | unknown <mats@romeo.(none)> | 2006-12-22 12:09:44 +0100 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2006-12-22 12:09:44 +0100 |
commit | 948804c8aa41e4e62a171ff6ed987b6961f0bd72 (patch) | |
tree | dfc8e7ee09f281370513b3455c34523e525cd545 /sql/log.cc | |
parent | c3315ccca9790db558c854239547d324cd97ab66 (diff) | |
download | mariadb-git-948804c8aa41e4e62a171ff6ed987b6961f0bd72.tar.gz |
BUG#22864 (CREATE-SELECT does not work correctly):
Post-merge fixes.
sql/log.cc:
Removing HAVE_ROW_BASED_REPLICATION from file.
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/log.cc b/sql/log.cc index 06b8396fbd9..801b2849121 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -148,7 +148,6 @@ public: */ void truncate(my_off_t pos) { -#ifdef HAVE_ROW_BASED_REPLICATION DBUG_PRINT("info", ("truncating to position %lu", pos)); DBUG_PRINT("info", ("before_stmt_pos=%lu", pos)); delete pending(); @@ -156,7 +155,6 @@ public: reinit_io_cache(&trans_log, WRITE_CACHE, pos, 0, 0); if (pos < before_stmt_pos) before_stmt_pos= MY_OFF_T_UNDEF; -#endif } /* |