summaryrefslogtreecommitdiff
path: root/sql/sql_base.cc
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mysql.com>2008-08-21 16:47:23 +0500
committerAlexander Barkov <bar@mysql.com>2008-08-21 16:47:23 +0500
commit762df2d05c47466404dd48823f3d5fc22f8fc3f7 (patch)
treed7373ca2777d73cc9c3284a463a35ad94d3452e3 /sql/sql_base.cc
parent0c5bc2eafc95cb20f332becd295c29be95149700 (diff)
downloadmariadb-git-762df2d05c47466404dd48823f3d5fc22f8fc3f7.tar.gz
Additional fix for bug#31455 (rpl decoder)
- Implementing --base64-format=decode-rows, to display SQL-alike decoded row events without their BINLOG statements. - Adding --base64-format=decode-rows into tests when calling mysqlbinlog to avoid non-deterministic results - Removing resetting of last_table_id in "RESET MASTER", which appeared to be dangerous.
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r--sql/sql_base.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc
index 6d394e04b4a..36b9d53ce85 100644
--- a/sql/sql_base.cc
+++ b/sql/sql_base.cc
@@ -3720,13 +3720,6 @@ void assign_new_table_id(TABLE_SHARE *share)
DBUG_VOID_RETURN;
}
-void reset_table_id_sequence()
-{
- pthread_mutex_lock(&LOCK_open);
- last_table_id= ~0UL;
- pthread_mutex_unlock(&LOCK_open);
-}
-
/**
Compare metadata versions of an element obtained from the table
definition cache and its corresponding node in the parse tree.