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.
-- 
Grzegorz

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to