mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
mysql-test/mysql-test-run.pl
provide the writable datadir for mysqld --help (for lower_case test)
sql/log.h, sql/mysqld.cc
make default binlog_format value to be 0 (for a hack of using
GET_STR for enum to continue to work)
mysql-test/mysql-test-run.pl:
provide the writable datadir for mysqld --help (for lower_case test)
sql/log.h:
make default binlog_format value to be 0 (for a hack of using
GET_STR for enum to continue to work)
sql/mysqld.cc:
make default binlog_format value to be 0 (for a hack of using
GET_STR for enum to continue to work)
This commit is contained in:
parent
6cc76eb61c
commit
4cd780d22b
3 changed files with 6 additions and 6 deletions
|
|
@ -603,13 +603,13 @@ public:
|
|||
};
|
||||
|
||||
enum enum_binlog_format {
|
||||
BINLOG_FORMAT_STMT= 0, // statement-based
|
||||
BINLOG_FORMAT_ROW= 1, // row_based
|
||||
/*
|
||||
statement-based except for cases where only row-based can work (UUID()
|
||||
etc):
|
||||
*/
|
||||
BINLOG_FORMAT_MIXED= 2,
|
||||
BINLOG_FORMAT_MIXED= 0,
|
||||
BINLOG_FORMAT_STMT= 1, // statement-based
|
||||
BINLOG_FORMAT_ROW= 2, // row_based
|
||||
/*
|
||||
This value is last, after the end of binlog_format_typelib: it has no
|
||||
corresponding cell in this typelib. We use this value to be able to know if
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue