Index Scan
— B-tree traversal + heap fetches
← all topics
SELECT
*
FROM
users
WHERE
email =
'ada@pg.dev'
;
B-tree index (idx_users_email)
root · [m]
[a..f]
[g..l]
[m..r]
[s..z]
leaf: a..f
aaron → (2, 1)
ada → (5, 0)
bob → (1, 3)
eve → (7, 2)
Heap (physical pages)