if (ft_handler == NULL)
DBUG_RETURN(-1.0);
And that is why It returns -1
I guess ft_handler is null, it is set by init_search
but I am not getting which function is calling init_search
Regards
sachin
Hello Sergei,
This script:
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a VARCHAR(30), b DOUBLE);
INSERT INTO t1 values('aaaa bbbb cccc dddd', MATCH (a) AGAINST('bbbb' IN BOOLEAN MODE));
SELECT * FROM t1;
returns:
+---------------------+------+
| a | b |
+---------------------+------+
| aaaa bbbb cccc dddd | -1 |
+---------------------+------+
What does this -1 mean?
Is this a bug?
Thanks!
_______________________________________________
Mailing list: https://launchpad.net/~maria-developers
Post to : maria-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~maria-developers
More help : https://help.launchpad.net/ListHelp