1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Removing the binlog-show-xid option as it was only a temporary solution until we have replace-regex which we have now.

That option was used to suppress the XID from the output of SHOW BINLOG EVENTS (to create a repeatable testsuite),
was available only in debug builds, and was explicitely marked as "may be removed in future versions" in mysqld --help.
Idea of the removal approved by the replication team.
This commit is contained in:
guilhem@mysql.com
2006-05-17 22:16:51 +02:00
parent 398ce9e7ca
commit c1b11edfac
7 changed files with 17 additions and 45 deletions

View File

@ -1221,9 +1221,6 @@ class Xid_log_event: public Log_event
bool write(IO_CACHE* file);
#endif
bool is_valid() const { return 1; }
#if !defined(DBUG_OFF) && !defined(MYSQL_CLIENT)
static my_bool show_xid;
#endif
};
/*****************************************************************************