NULLs and sort order - Mailing list pgsql-hackers

From Rene Pijlman
Subject NULLs and sort order
Date
Msg-id g6nmptooueb7tn3pga089ihc3csge15i19@4ax.com
Whole thread Raw
Responses Re: [JDBC] NULLs and sort order  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-hackers
The JDBC driver's test suite currently fails on DatabaseMetaData
methods that provide information about NULLs and sort order.
I've looked through the documentation, but couldn't find
anything about it.

The JDBC driver returns different values, depending on the
backend version (<7.2 vs. >= 7.2), so this suggests something
changed recently. This is probably also the cause of the test
suite failure, since the test case has no conditional coding for
different backend versions. So presumably, the test suite needs
to be updated, but I wanted to doublecheck the functionality on
this list.

What we need to know is:
- Do null values sort higher or lower than any other value in a
domain? Higher would mean that null values appear at the end in
an ascending sort order.
- Will null values appear at the start or the end regardless of
the sort order?

Currently the JDBC driver says:
- Backend >= 7.2 sorts nulls higher than any other value in a
domain. In other words: ascending means nulls at the end,
descending means nulls at the start.
- Backend < 7.2 puts nulls at the end regardless of sort order.

Can someone confirm if this is correct?

Would it be useful to add this information to the documentation,
e.g. the documentation of ORDER BY in SELECT?

Regards,
René Pijlman <rene@lab.applinet.nl>

pgsql-hackers by date:

Previous
From: Michael Meskes
Date:
Subject: CVS access
Next
From: Peter Eisentraut
Date:
Subject: Re: [JDBC] NULLs and sort order