Lesson 3.38mIntermediate7k students

Tuning a slow query

Rewriting is often better than indexing. Remove the function on the indexed column, cut the rows early, and check the plan again.

This lesson sits in Query Performance, part of PostgreSQL for Developers. It assumes what came before it and leads directly into the next lesson in the module.

In this lesson you will

  • Rewrite predicates so an index can be used
  • Reduce the row count as early as possible
  • Verify the improvement with a fresh plan

Pro tip

Wrapping an indexed column in a function usually disables the index. Transform the parameter instead.

Resources