Inconsistent information on default ordering for ORDER BY clause

Started by PG Bug reporting formover 2 years ago3 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/sql-select.html
Description:

At the top of the sql-select page it says

"If ORDER BY is not given, the rows are returned in whatever order the
system finds fastest to produce."

but later it says

"Optionally one can add the key word ASC (ascending) or DESC (descending)
after any expression in the ORDER BY clause. If not specified, ASC is
assumed by default."

The first statement implies that you cannot rely on the default ordering,
but the second implies that you can (and it will be ASC).

#2David Rowley
dgrowleyml@gmail.com
In reply to: PG Bug reporting form (#1)
Re: Inconsistent information on default ordering for ORDER BY clause

On Fri, 8 Dec 2023 at 22:49, PG Doc comments form
<noreply@postgresql.org> wrote:

Page: https://www.postgresql.org/docs/16/sql-select.html
Description:

At the top of the sql-select page it says

"If ORDER BY is not given, the rows are returned in whatever order the
system finds fastest to produce."

but later it says

"Optionally one can add the key word ASC (ascending) or DESC (descending)
after any expression in the ORDER BY clause. If not specified, ASC is
assumed by default."

The first statement implies that you cannot rely on the default ordering,
but the second implies that you can (and it will be ASC).

Perhaps you're going wrong in the last sentence in the latter fragment
where it says "If not specified". This is talking about ASC/DESC
rather than the ORDER BY.

Maybe that could be made more clear. Something like "If ASC or DESC is
not specified, ASC is assumed by default".

Would that make it more clear?

David

#3Zane Duffield
duffieldzane@gmail.com
In reply to: David Rowley (#2)
Re: Inconsistent information on default ordering for ORDER BY clause

Ah, I just misread it. I think it's perfectly clear actually, I just went there looking for the default order (ASC/DESC) and skimmed the first line about ORDER BY. I must have interpreted "whatever order" to mean "whichever orientation of ordering".

Sorry about that.

Zane
________________________________
From: David Rowley <dgrowleyml@gmail.com>
Sent: Friday, December 8, 2023 8:56:48 PM
To: duffieldzane@gmail.com <duffieldzane@gmail.com>; pgsql-docs@lists.postgresql.org <pgsql-docs@lists.postgresql.org>
Subject: Re: Inconsistent information on default ordering for ORDER BY clause

On Fri, 8 Dec 2023 at 22:49, PG Doc comments form
<noreply@postgresql.org> wrote:

Page: https://www.postgresql.org/docs/16/sql-select.html
Description:

At the top of the sql-select page it says

"If ORDER BY is not given, the rows are returned in whatever order the
system finds fastest to produce."

but later it says

"Optionally one can add the key word ASC (ascending) or DESC (descending)
after any expression in the ORDER BY clause. If not specified, ASC is
assumed by default."

The first statement implies that you cannot rely on the default ordering,
but the second implies that you can (and it will be ASC).

Perhaps you're going wrong in the last sentence in the latter fragment
where it says "If not specified". This is talking about ASC/DESC
rather than the ORDER BY.

Maybe that could be made more clear. Something like "If ASC or DESC is
not specified, ASC is assumed by default".

Would that make it more clear?

David