ctx_ddl.set_attribute and punctuations with ;
Hi!
I need to use ctx_ddl.set_attribute with punctuations tp specify the non-alphanumeric characters that, when they appear at the end of a word, indicate the end of a sentence or a grouping within a sentence. And for me this non-alphanumeric characters is this: ;
I thy in this way:
ctx_ddl.create_preference('TEST_LEXER', 'BASIC_LEXER');
ctx_ddl.set_attribute('RI_LEXER', 'printjoins', ' ');
ctx_ddl.set_attribute('RI_LEXER', 'punctuations', ';,');
ctx_ddl.set_attribute ( 'RI_LEXER', 'whitespace', ';,');
end;
CREATE INDEX INDX_TEST ON TABLE(COLUMN)
INDEXTYPE IS "CTXSYS"."CONTEXT" PARAMETERS ('LEXER TEST_LEXER');
But it doesn't work.