mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-02 10:00:38 +01:00
Corrections for v2.0 and above.
This commit is contained in:
parent
ea2fd6ac42
commit
1c5c4e0feb
@ -18,7 +18,7 @@ nulls_placement : NULLS FIRST | NULLS LAST;
|
|||||||
it is interpreted as column number. The nulls_placement clause
|
it is interpreted as column number. The nulls_placement clause
|
||||||
controls ordering of nulls in result set. They can be sorted
|
controls ordering of nulls in result set. They can be sorted
|
||||||
either above (NULLS FIRST) or below (NULLS LAST) of all other values.
|
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:
|
Author:
|
||||||
Nickolay Samofatov <skidder@bssys.com>
|
Nickolay Samofatov <skidder@bssys.com>
|
||||||
@ -27,8 +27,10 @@ Author:
|
|||||||
N O T E S
|
N O T E S
|
||||||
=========
|
=========
|
||||||
|
|
||||||
- Index is never used for ordering if you specify NULLS FIRST
|
- If you override the default nulls placement, no index can be used
|
||||||
as a nulls_placement
|
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
|
- Results are undefined if you ask engine to sort results using
|
||||||
non-deterministic UDF or stored procedure.
|
non-deterministic UDF or stored procedure.
|
||||||
- Amount of procedure invocations is undefined if you ask engine to
|
- Amount of procedure invocations is undefined if you ask engine to
|
||||||
|
Loading…
Reference in New Issue
Block a user