-
Notifications
You must be signed in to change notification settings - Fork 94
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
feat(indexeddb): advanced cursor filtering impl #2066
Conversation
/// Continues the cursor according to the provided `CursorAction`. If the action | ||
/// is `CursorAction::Continue`, the cursor advances to the next item. If the action is | ||
/// `CursorAction::ContinueWithValue`, the cursor advances to the specified value. If the | ||
/// action is `CursorAction::Stop`, the cursor is stopped, and subsequent calls to `next` | ||
/// will return `None`. |
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.
Could you reformat this explanation into multiple lines (per line for each action)?
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 will do the next review when this PR drops in-progress
label and resolves the conflicts.
# Conflicts: # mm2src/mm2_db/src/indexed_db/drivers/cursor/cursor.rs
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.
Thank you for the PR! Only some minor comments and a question!
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.
🔥
* dev: feat(indexeddb): advanced cursor filtering impl (KomodoPlatform#2066) update dockerhub destination repository (KomodoPlatform#2082) feat(event streaming): configurable worker path, use SharedWorker (KomodoPlatform#2080) fix(hd_tests): fix test_hd_utxo_tx_history unit test (KomodoPlatform#2078) feat(network): improve efficiency of known peers handling (KomodoPlatform#2074) feat(nft): enable eth with non fungible tokens (KomodoPlatform#2049) feat(ETH transport & heartbeats): various enhancements/features (KomodoPlatform#2058)
This pull request adds several new filtering features to the mm2 indexedbdb crate, including
limit
,offset
, with a minor fix forwhere_
condition/option.closes: #2052, #2019