1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Post-merge fixes.

mysql-test/r/fulltext_order_by.result:
  A post-merge fix.
mysql-test/t/fulltext_order_by.test:
  A post-merge fix (a different plan is chosen for a query in 5.0)
sql/sql_select.cc:
  Post-merge fix.
This commit is contained in:
unknown
2005-07-14 20:02:37 +04:00
parent a1a05ac85c
commit d12fd45d72
3 changed files with 4 additions and 2 deletions

View File

@ -158,5 +158,5 @@ where
match(c.beitrag) against ('+abc' in boolean mode)
order by
match(betreff) against ('+abc' in boolean mode) desc;
text id betreff
ERROR HY000: The used table type doesn't support FULLTEXT indexes
drop table t1,t2,t3;

View File

@ -117,6 +117,8 @@ where
order by
match(b.betreff) against ('+abc' in boolean mode) desc;
-- todo psergey: fix
--error 1214
select a.text, b.id, b.betreff
from
t2 a inner join t3 b on a.id = b.forum inner join