Re: ORDER BY and NULLs - Mailing list pgsql-sql

From Greg Stark
Subject Re: ORDER BY and NULLs
Date
Msg-id 87zn3mjeaw.fsf@stark.xeocode.com
Whole thread Raw
In response to Re: ORDER BY and NULLs  (T E Schmitz <mailreg@numerixtechnology.de>)
Responses Re: ORDER BY and NULLs  (T E Schmitz <mailreg@numerixtechnology.de>)
List pgsql-sql
T E Schmitz <mailreg@numerixtechnology.de> writes:

> I just dug out the PostgreSQL book again because I thought I might've garbled
> it:
> 
> Quote: "PostgreSQL will not index NULL values. Because an index will never
> include NULL values, it cannot be used to satisfy the ORDER BY clause of a
> query that returns all rows in a table."

You should just cross out that whole section. It's just flatly wrong. 

I had always assumed it was just people bringing assumptions over from Oracle
where it is true. Perhaps this book is to blame for some of the confusion.
Which book is it?

Postgres indexes NULLs. It can use them for ORDER BY clauses. 

Where it cannot use them is to satisfy "WHERE foo IS NULL" or "WHERE foo IS
NOT NULL" constraints though. That's an implementation detail, but it can be
worked around with partial indexes.

-- 
greg



pgsql-sql by date:

Previous
From: T E Schmitz
Date:
Subject: Re: ORDER BY and NULLs
Next
From: Tom Lane
Date:
Subject: Re: ORDER BY and NULLs