-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Support json contains feature #25384
Support json contains feature #25384
Conversation
e3f8640
to
16e210c
Compare
Codecov Report
@@ Coverage Diff @@
## master #25384 +/- ##
==========================================
+ Coverage 82.62% 82.65% +0.02%
==========================================
Files 812 812
Lines 109153 109522 +369
==========================================
+ Hits 90191 90528 +337
- Misses 15828 15863 +35
+ Partials 3134 3131 -3
|
16e210c
to
9c1bace
Compare
test example:
|
@xiaocai2333 E2e jenkins job failed, comment |
9c1bace
to
31d2476
Compare
@xiaocai2333 ut workflow job failed, comment |
31d2476
to
bffeb8d
Compare
@xiaocai2333 Thanks for your contribution. Please submit with DCO, see the contributing guide https://github.com/milvus-io/milvus/blob/master/CONTRIBUTING.md#developer-certificate-of-origin-dco. |
@xiaocai2333 E2e jenkins job failed, comment |
/run-cpu-e2e |
bffeb8d
to
1d41cd6
Compare
@xiaocai2333 E2e jenkins job failed, comment |
/run-cpu-e2e |
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.
Some copying could be avoided, and the contains time complexity could be optimized, others lgtm
/hold |
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.
Please add ut for the changes of segcore.
1d41cd6
to
15a67a7
Compare
@xiaocai2333 E2e jenkins job failed, comment |
15a67a7
to
f9abc11
Compare
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: czs007, xiaocai2333 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/unhold |
f9abc11
to
be994bd
Compare
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
be994bd
to
6cbd644
Compare
@xiaocai2333 E2e jenkins job failed, comment |
/run-cpu-e2e |
@xiaocai2333 E2e jenkins job failed, comment |
/run-cpu-e2e |
/lgtm |
issue: #25276
json_contains_all(json_array, element_array)
, all element in element_array must be in the json_array.json_contains_any(json_array, element_array)
, any element in element_array is in the json_array.