Attempts to fix full text search fields
Adds field name alias to fix full text searches. Closes #42
This commit is contained in:
parent
66fdb8a046
commit
800ec69565
1 changed files with 1 additions and 1 deletions
|
@ -1429,7 +1429,7 @@ class HashModel(RedisModel, abc.ABC):
|
||||||
if getattr(field_info, "full_text_search", False) is True:
|
if getattr(field_info, "full_text_search", False) is True:
|
||||||
schema = (
|
schema = (
|
||||||
f"{name} TAG SEPARATOR {SINGLE_VALUE_TAG_FIELD_SEPARATOR} "
|
f"{name} TAG SEPARATOR {SINGLE_VALUE_TAG_FIELD_SEPARATOR} "
|
||||||
f"{name}_fts TEXT"
|
f"{name} AS {name}_fts TEXT"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
schema = f"{name} TAG SEPARATOR {SINGLE_VALUE_TAG_FIELD_SEPARATOR}"
|
schema = f"{name} TAG SEPARATOR {SINGLE_VALUE_TAG_FIELD_SEPARATOR}"
|
||||||
|
|
Loading…
Reference in a new issue