-
Notifications
You must be signed in to change notification settings - Fork 37
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
node/metabase: Support ROOT and PHY search filters in new meta bucket #3124
Conversation
Continues 9e2e544. Closes #3116. Signed-off-by: Leonard Lyubich <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3124 +/- ##
=======================================
Coverage 22.93% 22.94%
=======================================
Files 750 750
Lines 58683 58698 +15
=======================================
+ Hits 13459 13467 +8
- Misses 44282 44287 +5
- Partials 942 944 +2 ☔ View full report in Codecov by Sentry. |
|
||
func convertFilterValue(f object.SearchFilter) (object.SearchMatchType, string) { | ||
if attr := f.Header(); attr == object.FilterRoot || attr == object.FilterPhysical { | ||
return object.MatchStringEqual, binPropMarker |
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.
Do we have a check anywhere for these restricted (per attribute) operations?
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.
no checks. U mean that ROOT and PHY aint used w/ other matchers?
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.
Yes, it should be a part of the request semantics check.
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.
gonna do in #3111
No description provided.