diff options
author | unknown <sergefp@mysql.com> | 2006-07-31 22:22:01 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2006-07-31 22:22:01 +0400 |
commit | 9f90d4c2243790b103c7340ecbd2f9cd0bcfb380 (patch) | |
tree | 6d744b8a2f004100c03da3c541fd06d8eee9bbc6 /mysql-test/r/binlog_row_blackhole.result | |
parent | 63c4889b8340bc74849a8b16363a7fb51de804b9 (diff) | |
download | mariadb-git-9f90d4c2243790b103c7340ecbd2f9cd0bcfb380.tar.gz |
BUG#14940: Post-merge fixes: update test results
Diffstat (limited to 'mysql-test/r/binlog_row_blackhole.result')
-rw-r--r-- | mysql-test/r/binlog_row_blackhole.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/binlog_row_blackhole.result b/mysql-test/r/binlog_row_blackhole.result index 140d7d4da46..60a8802ecd0 100644 --- a/mysql-test/r/binlog_row_blackhole.result +++ b/mysql-test/r/binlog_row_blackhole.result @@ -70,8 +70,8 @@ a b Only MyISAM tables support collections Full-text indexes are called collections explain extended select * from t1 where MATCH(a,b) AGAINST ("collections"); -id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 fulltext a a 0 1 Using where +id select_type table type possible_keys key key_len ref rows filtered Extra +1 SIMPLE t1 fulltext a a 0 1 100.00 Using where Warnings: Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` where (match `test`.`t1`.`a`,`test`.`t1`.`b` against (_latin1'collections')) select * from t1 where MATCH(a,b) AGAINST ("indexes"); |