A question about multi_lexer [message #412312] |
Wed, 08 July 2009 11:08 |
Lincon
Messages: 2 Registered: July 2009
|
Junior Member |
|
|
I create a table to test the usage of multi_lexer.The table is as below:
create table test (
id number,
text varchar2(200)
);
I create a context index with multi_lexer on column text. First I use
Russian and English in text column, and I can find matching records as expected.
select * from test where contains(text, '***', 1) > 0;
Then when I test text in Japanese and Korean, after creating the index, I find
certain tokens in the $I table. But when I query it, I just can not get matching records.
what's wrong ?
Thanks for your help.
|
|
|