You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The space character (" ") is already on the default stop-word list.
But SELECT ts_lexize('jieba_stem', ' '); => {" "} instead of {}
Even more, when adding apple watch to the list. Here are the results of ts_lexize: apple watch => {"apple watch"}, apple => {}, watch => {watch}
Seems that the space character breaks the line into the first lexis only.
The text was updated successfully, but these errors were encountered:
YiFanChen99
changed the title
Space character (" ") on stop-word list is not a character
Space character (" ") on stop-word list acts like a separator instead of a character
Jul 28, 2020
The space character (" ") is already on the default stop-word list.
But
SELECT ts_lexize('jieba_stem', ' ');
=>{" "}
instead of{}
Even more, when adding
apple watch
to the list. Here are the results ofts_lexize
:apple watch
=>{"apple watch"}
,apple
=>{}
,watch
=>{watch}
Seems that the space character breaks the line into the first lexis only.
The text was updated successfully, but these errors were encountered: