Skip to content
Advertisement

Including a column twice in a PostgreSQL index

I’m building a PostgreSQL based work-queue as described here.

My queue definition differs slightly from the concept described in the article by using a target timestamp for consumption (due_time):

There’s a single index:

Let’s fill the table with a test dataset:

And consume an item:

On my system the query takes ~2 seconds to complete with the following execution plan:

https://explain.depesz.com/s/oLYI

BUT, if I change the index like below, including the due_time a second time – something I have never done before …

the query takes 60ms and results in this plan:

https://explain.depesz.com/s/U3LA

Now my question is, it feels weird to include a column two times in a index. Am I missing something here? Could the same be achieved using a different index or rephrasing the query?

Advertisement

Answer

Yes, it is weird. You can do better:

Then query like this:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement