Hi colleagues,
we use HANA fuzzy search in our application.
the text column is HTML type. we already set mine type as text/html when creating DB index for this column.
ID | text |
---|---|
1 | <html><body> "sample"</body></html> |
2 | <html><body> "test"</body></html> |
But we meet an issue with fuzzy search behavior with following query:
select SNIPPETS(text) from table where CONTAINS(text, 'quot')
when search with term 'quot', the quot in the text will be highlighted as &<b>quot</b>;
but " stands for " , we don't expect it to be searched out.
Is there any solution for this issue?