1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

In documentation, change "recommendable" to "recommended", per

consultation with word definitions.

Backpatch to 9.2.
This commit is contained in:
Bruce Momjian
2012-08-14 12:36:35 -04:00
parent 51fd748e54
commit 1d96cf9404
5 changed files with 5 additions and 5 deletions

View File

@@ -1099,7 +1099,7 @@ SELECT product_id, p.name, (sum(s.units) * (p.price - p.cost)) AS profit
Currently, window functions always require presorted data, and so the
query output will be ordered according to one or another of the window
functions' <literal>PARTITION BY</>/<literal>ORDER BY</> clauses.
It is not recommendable to rely on this, however. Use an explicit
It is not recommended to rely on this, however. Use an explicit
top-level <literal>ORDER BY</> clause if you want to be sure the
results are sorted in a particular way.
</para>