I am having Text Index and and inverted Index . And for some data Text Index not able to pull out results. for the same search Inverted Index works all the time.
Eg: - The Text Index Search for following is not working
select * from mylog where text_match(log, '1DB7BAD2-406A-D773-B1DA-291664314C4F')
but it works for
select * from mylog where text_match(log, '0D82F520-62C8-9914-14B8-4C2331E54075')
it looks like somehow some data are skipped from text_index. However both search will works fine with regexp_like inverted index.
I am having Text Index and and inverted Index . And for some data Text Index not able to pull out results. for the same search Inverted Index works all the time.
Eg: - The Text Index Search for following is not working
select * from mylog where text_match(log, '1DB7BAD2-406A-D773-B1DA-291664314C4F')
but it works for
select * from mylog where text_match(log, '0D82F520-62C8-9914-14B8-4C2331E54075')
it looks like somehow some data are skipped from text_index. However both search will works fine with regexp_like inverted index.