-
Notifications
You must be signed in to change notification settings - Fork 332
MOD-4602: handle jsonpath filter with 3 or more operands #890
New issue
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
Conversation
Codecov ReportBase: 81.44% // Head: 81.36% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #890 +/- ##
==========================================
- Coverage 81.44% 81.36% -0.09%
==========================================
Files 14 14
Lines 3865 3896 +31
==========================================
+ Hits 3148 3170 +22
- Misses 717 726 +9
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Cargo.toml
Outdated
@@ -16,6 +16,10 @@ categories = ["database-implementations"] | |||
crate-type = ["cdylib", "rlib"] | |||
name = "rejson" | |||
|
|||
[dev-dependencies] | |||
env_logger = "0.10.0" | |||
redis-module = { version="1.0", features = ["experimental-api", "test"]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets just make sure this will not somehow effect the final .so file itself, we need to see that the redisjson.so are still using the Redis allocator.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll comment it out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good,
One comment.
* enable tracing jsonpath tests * add flow test * Evaluate all filter operands * Add tests with precedence and nesting * update spellcheck dictionary * remove redis-module from dev-dependencies (cherry picked from commit 6b30093)
Fix #889