From ff71980af7efc0af906d96d775c9aa9c5546142b Mon Sep 17 00:00:00 2001 From: "acurtis@xiphis.org" <> Date: Sat, 13 May 2006 01:09:00 -0700 Subject: [PATCH] fix binlog results --- mysql-test/r/binlog_row_blackhole.result | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mysql-test/r/binlog_row_blackhole.result b/mysql-test/r/binlog_row_blackhole.result index aa5c943de00..42bf7a10888 100644 --- a/mysql-test/r/binlog_row_blackhole.result +++ b/mysql-test/r/binlog_row_blackhole.result @@ -156,3 +156,9 @@ master-bin.000001 # Query 1 # use `test`; BEGIN master-bin.000001 # Table_map 1 # table_id: # (test.t1) master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F master-bin.000001 # Query 1 # use `test`; COMMIT +drop table if exists t1; +create table t1 (c char(20)) engine=MyISAM; +insert into t1 values ("Monty"),("WAX"),("Walrus"); +alter table t1 engine=blackhole; +ERROR HY000: Table storage engine for 't1' doesn't have this option +drop table t1;