1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Small fixes for merge.

mysql-test/include/not_embedded.inc:
  Fixed a typo.
mysql-test/lib/mtr_cases.pl:
  Fixed typo and wrong error message.
mysql-test/r/binlog_statement_insert_delayed.result:
  Fixed result file.
sql/event_db_repository.cc:
  Fixed type.
sql/log.cc:
  Fixed type.
This commit is contained in:
unknown
2007-04-10 18:01:29 +03:00
parent a2989a35f5
commit d66e47213d
5 changed files with 11 additions and 11 deletions

View File

@ -534,7 +534,7 @@ sub collect_one_test_case($$$$$$$) {
! ( $tinfo->{'binlog_format'} eq $::used_binlog_format ) )
{
$tinfo->{'skip'}= 1;
$tinfo->{'comment'}= "Not running with binlog format '$tinfo->{'binlog_format'}'";
$tinfo->{'comment'}= "Requiring binlog format '$tinfo->{'binlog_format'}'";
return;
}
@ -599,7 +599,7 @@ our @tags=
(
["include/have_innodb.inc", "innodb_test", 1],
["include/have_binlog_format_row.inc", "binlog_format", "row"],
["include/have_binlog_format_statement.inc", "binlog_format", "stmt"],
["include/have_binlog_format_statement.inc", "binlog_format", "statement"],
["include/have_binlog_format_mixed.inc", "binlog_format", "mixed"],
["include/big_test.inc", "big_test", 1],
["include/have_debug.inc", "need_debug", 1],