8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 14:43:03 +01:00

Corrections for v2.0 and above.

This commit is contained in:
dimitr 2007-07-03 12:10:22 +00:00
parent ea2fd6ac42
commit 1c5c4e0feb

View File

@ -18,7 +18,7 @@ nulls_placement : NULLS FIRST | NULLS LAST;
it is interpreted as column number. The nulls_placement clause
controls ordering of nulls in result set. They can be sorted
either above (NULLS FIRST) or below (NULLS LAST) of all other values.
Behaviour when nulls_placement is unspecified is NULLS LAST.
Behaviour when nulls_placement is unspecified is NULLS FIRST.
Author:
Nickolay Samofatov <skidder@bssys.com>
@ -27,8 +27,10 @@ Author:
N O T E S
=========
- Index is never used for ordering if you specify NULLS FIRST
as a nulls_placement
- If you override the default nulls placement, no index can be used
for sorting. That is, no index will be used for an ASCENDING sort
if NULLS LAST is specified, nor for a DESCENDING sort
if NULLS FIRST is specified.
- Results are undefined if you ask engine to sort results using
non-deterministic UDF or stored procedure.
- Amount of procedure invocations is undefined if you ask engine to