WeSearch

1.4 Planner: Which Path to Take

·5 min read · 0 reactions · 0 comments · 12 views
#postgres#database#internals
1.4 Planner: Which Path to Take
⚡ TL;DR · AI summary

The article discusses the planner stage in PostgreSQL's query processing. It explains how the planner takes a Query tree and produces a PlannedStmt, determining the execution path based on cost estimates. The planner's decision-making process involves evaluating multiple candidates for execution strategies, focusing on efficiency rather than correctness.

Key facts
Original article
DEV.to (Top)
Read full at DEV.to (Top) →
Opening excerpt (first ~120 words) tap to expand

try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3911251) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } JoongHyuk Shin Posted on May 29 1.4 Planner: Which Path to Take #postgres #database #internals #planner PostgreSQL Internals (14 Part Series) 1 1.1 Where Does a Query Go? 2 1.1.1 Life of a Query ... 10 more parts...

Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from DEV.to (Top)