mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
89d9105d44
mysql-test/suite/binlog/t/binlog_row_binlog.test: Don't run test if utf8_unicode_ci is not available mysql-test/suite/binlog/t/binlog_stm_binlog.test: Don't run test if utf8_unicode_ci is not available mysql-test/suite/funcs_1/r/is_columns_is.result: Update result mysql-test/suite/innodb/t/innodb_misc1.test: Don't run test if utf8_unicode_ci is not available mysql-test/suite/innodb/t/innodb_mysql.test: Don't run test if utf8_unicode_ci is not available
23 lines
613 B
Text
23 lines
613 B
Text
-- source include/not_embedded.inc
|
|
-- source include/have_binlog_format_mixed.inc
|
|
let collation=utf8_unicode_ci;
|
|
--source include/have_collation.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
# REQUIREMENT
|
|
# replace_regex should replace output of SHOW BINLOG EVENTS
|
|
|
|
create table t1 (a int, b int) engine=innodb;
|
|
begin;
|
|
insert into t1 values (1,2);
|
|
commit;
|
|
source include/show_binlog_events.inc;
|
|
drop table t1;
|
|
|
|
# This is a wrapper for binlog.test so that the same test case can be used
|
|
# For both statement and row based bin logs 9/19/2005 [jbm]
|
|
|
|
-- source extra/binlog_tests/binlog.test
|