We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
redisearch-go/redisearch/query.go
Line 241 in 7a5af81
The command line of FT.SEARCH is like this 127.0.0.1:6379> FT.SEARCH myIndex "hello world" LIMIT 0 2 RETURN 1 title FILTER age 29 (31
127.0.0.1:6379> FT.SEARCH myIndex "hello world" LIMIT 0 2 RETURN 1 title FILTER age 29 ( 31 (error) Unknown argument 31 at position 11 for
31
The text was updated successfully, but these errors were encountered:
change the filter of numberic with exclude flag(RediSearch#143)
3344187
(
fix #143 FILTER should not have white space from the EXCLUDE ( (#145)
23c6554
change the filter of numberic with exclude flag(#143) (#144)
136e040
Co-authored-by: shaojunwu <xjplke@163.com> Co-authored-by: Avital Fine <98389525+Avital-Fine@users.noreply.github.com>
Successfully merging a pull request may close this issue.
redisearch-go/redisearch/query.go
Line 241 in 7a5af81
When appendNumArgs has exclude flag, it should append "(" and num together.
The command line of FT.SEARCH is like this
127.0.0.1:6379> FT.SEARCH myIndex "hello world" LIMIT 0 2 RETURN 1 title FILTER age 29 (31
127.0.0.1:6379> FT.SEARCH myIndex "hello world" LIMIT 0 2 RETURN 1 title FILTER age 29 ( 31
(error) Unknown argument
31
at position 11 forThe text was updated successfully, but these errors were encountered: