Add btree index to node_type
on state_cids and storage_cids
#113
Labels
No Label
bug
critical
duplicate
enhancement
epic
help wanted
in progress
invalid
low priority
question
rebase
v1
v5
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/go-ethereum#113
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Maybe some additional experimentation should be done to determine if this is worth it. But certain queries against the
node_type
are very slow, for example if we just want to find an arbitrary "Removed" node (node_type = 4; e.g.SELECT * FROM eth.state_cids WHERE node_type = 4 LIMIT 1;
) it takes a long time because "Removed" nodes are very uncommon relative to the other types so the query has to search through a ton of all the other node types to find even one of the "Removed" type.