summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_stm_ctype_ucs.result
Commit message (Collapse)AuthorAgeFilesLines
* BUG#34541: mysqlbinlog prints 'set;' in stm mode after changing autocommit modesven@riska.(none)2008-04-021-1/+1
| | | | | | | | Problem: a typo in the code. When autocommit, foreign_key_checks, sql_auto_is_null, or unique_checks changes, it prints "SET", and then a comma-separated list of assignments. However, it does not print the assignment to the @@autocommit variable. Fix: print the @@autocommit variable.
* BUG#31168: @@hostname does not replicatesven@riska.(none)2008-03-071-0/+4
| | | | | | | | | | | | | | | | | | | Problem: in mixed and statement mode, a query that refers to a system variable will use the slave's value when replayed on slave. So if the value of a system variable is inserted into a table, the slave will differ from the master. Fix: mark statements that refer to a system variable as "unsafe", meaning they will be replicated by row in mixed mode and produce a warning in statement mode. There are some exceptions: some variables are actually replicated. Those should *not* be marked as unsafe. BUG#34732: mysqlbinlog does not print default values for auto_increment variables Problem: mysqlbinlog does not print default values for some variables, including auto_increment_increment and others. So if a client executing the output of mysqlbinlog has different default values, replication will be wrong. Fix: Always print default values for all variables that are replicated. I need to fix the two bugs at the same time, because the test cases would fail if I only fixed one of them.
* BUG#32205 Replaying statements from mysqlbinlog fails with a syntax error, ↵hezx@hezx.(none)2007-12-171-1/+2
| | | | | | | | | | | | | replicates fine The reason of this bug is that when mysqlbinlog dumps a query, the query is written to output with a delimeter appended right after it, if the query string ends with a '--' comment, then the delimeter would be considered as part of the comment, if there are any statements after this query, then it will cause a syntax error. Start a newline before appending delimiter after a query string
* WL#3933 Split main test suite to rpl, rpl_ndb and ndbmsvensson@pilot.(none)2007-06-271-0/+27
- Update mysql-test-run.pl to collect tests from several suites - Group test into suites - Add suite.opt file