-
Notifications
You must be signed in to change notification settings - Fork 238
fix: del with ids #79
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
ee3338a
test(del): add test to cover deleting doc
34807b4
fix(del): deleting by ids in DA no longer bugs
6aab5fc
test(seq): add tests for acces by id after insert
2728244
fix(seq): rebuild index after insert
6bd5542
fix(del): del by id call del by offset
40242f2
fix(del): improve efficiency by rebuilding id2offset lazily when needed
fd744f4
fix(del): double quotes ==> simple quote
6621bc4
feat(getdelset): use a decorator for needs id2offset rebuild
b32ac41
fix(extend): extend is faster no rebuild id2offset index
485d99d
fix(set): no id2offset rebuild for set_do_value_pairs
94b2388
fix(seqlike): insert use id2offset now
samsja ddfa8a9
fix(newdoc): avoid rebuilding index when copying da
samsja 697cba0
fix(extend): values iterable is only consume once in extend
b40ef88
fix(initstorage): only daInMemory has an _id2offset
3052494
perf(extend): cast iterator to a list to use extend
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import pytest | ||
|
|
||
| from docarray import DocumentArray, Document | ||
|
|
||
|
|
||
| @pytest.fixture() | ||
| def docs(): | ||
| return DocumentArray([Document(id=f'{i}') for i in range(1, 10)]) | ||
|
|
||
|
|
||
| @pytest.mark.parametrize( | ||
| 'to_delete', | ||
| [ | ||
| 0, | ||
| 1, | ||
| 4, | ||
| -1, | ||
| list(range(1, 4)), | ||
| [2, 4, 7, 1, 1], | ||
| slice(0, 2), | ||
| slice(2, 4), | ||
| slice(4, -1), | ||
| [True, True, False], | ||
| ..., | ||
| ], | ||
| ) | ||
| def test_del_all(docs, to_delete): | ||
| doc_to_delete = docs[to_delete] | ||
| del docs[to_delete] | ||
| assert doc_to_delete not in docs | ||
|
|
||
|
|
||
| @pytest.mark.parametrize( | ||
| ['deleted_ids', 'expected_ids'], | ||
| [ | ||
| (['1', '2', '3', '4'], ['5', '6', '7', '8', '9']), | ||
| (['2', '4', '7', '1'], ['3', '5', '6', '8', '9']), | ||
| ], | ||
| ) | ||
| def test_del_by_multiple_idx(docs, deleted_ids, expected_ids): | ||
| del docs[deleted_ids] | ||
| assert docs[:, 'id'] == expected_ids |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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.
fix in last commit