Re: Words in fulltext search

2002-08-18 Thread Sergei Golubchik
Hi! On Aug 17, Grzegorz wrote: > Hi. > > I'd like to know is it safe to tune mysql-4.0.2/myisam/ft_parser.c > > #define true_word_char(X) (isalnum(X) || (X)=='_') > > to > > #define true_word_char(X) (isgraph(X) && (X)!='@') Not really. The parser won't recognize boolean search ope

Words in fulltext search

2002-08-17 Thread Grzegorz
Hi. I'd like to know is it safe to tune mysql-4.0.2/myisam/ft_parser.c #define true_word_char(X) (isalnum(X) || (X)=='_') to #define true_word_char(X) (isgraph(X) && (X)!='@') Or is anywhere better place to redefine chars which are "accepted" by fulltext search ? Regards. -- Grz