You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add fuzzy completion for SHOW PLAN NODE <node_id> to select from nodes in the last cached query plan.
Background
SHOW PLAN NODE requires knowing the exact node ID from the last query plan. The node list is already available in memory from the preceding query or EXPLAIN ANALYZE.
Design
New completion type: fuzzyCompletePlanNode
Data source: in-memory cached query plan nodes (no network call needed)
Summary
Add fuzzy completion for
SHOW PLAN NODE <node_id>to select from nodes in the last cached query plan.Background
SHOW PLAN NODErequires knowing the exact node ID from the last query plan. The node list is already available in memory from the preceding query or EXPLAIN ANALYZE.Design
fuzzyCompletePlanNodefzfItem{Value, Label}(Fuzzy finder: introduce fzfItem for display/insert text separation #525) for display/insert separation:Acceptance Criteria
SHOW PLAN NODE+ Ctrl+T shows available nodesPrerequisites
Related