diff options
author | unknown <brian@zim.(none)> | 2005-03-25 13:43:42 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2005-03-25 13:43:42 -0800 |
commit | e3528e0d1cd7e36158db09c0d50894a48df9f3bf (patch) | |
tree | ea97e988fc603398a781792456bf05293c6f5023 /mysql-test/r/blackhole.result | |
parent | 752b825a7360b1adc0ef390369f6bd5a86366d45 (diff) | |
download | mariadb-git-e3528e0d1cd7e36158db09c0d50894a48df9f3bf.tar.gz |
Adding rules for building blackhole, also updating test case.
configure.in:
Adding logic to run blackhole configure option.
mysql-test/r/blackhole.result:
Correction this, but I think I need to see why the warning is being generated in the first place.
Diffstat (limited to 'mysql-test/r/blackhole.result')
-rw-r--r-- | mysql-test/r/blackhole.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/blackhole.result b/mysql-test/r/blackhole.result index 20018dcb089..a3053075de5 100644 --- a/mysql-test/r/blackhole.result +++ b/mysql-test/r/blackhole.result @@ -73,7 +73,7 @@ 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 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')) +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"); a b Full-text indexes are called collections |