Обсуждение: pgsql: Return FALSE instead of throwing error for comparisons with empt

Поиск
Список
Период
Сортировка

pgsql: Return FALSE instead of throwing error for comparisons with empt

От
Tom Lane
Дата:
Return FALSE instead of throwing error for comparisons with empty ranges.

Change range_before, range_after, range_adjacent to return false rather
than throwing an error when one or both input ranges are empty.

The original definition is unnecessarily difficult to use, and also can
result in undesirable planner failures since the planner could try to
compare an empty range to something else while deriving statistical
estimates.  (This was, in fact, the cause of repeatable regression test
failures on buildfarm member jaguar, as well as intermittent failures
elsewhere.)

Also tweak rangetypes regression test to not drop all the objects it
creates, so that the final state of the regression database contains
some rangetype objects for pg_dump testing.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/851c83fc81917c61b063c875fc1bca489dfcc482

Modified Files
--------------
doc/src/sgml/filelist.sgml                 |    2 +-
doc/src/sgml/func.sgml                     |   73 ++++++++++++++++-----------
src/backend/utils/adt/rangetypes.c         |   31 +++++-------
src/test/regress/expected/rangetypes.out   |   42 +++++++---------
src/test/regress/expected/sanity_check.out |    4 +-
src/test/regress/output/misc.source        |    4 +-
src/test/regress/sql/rangetypes.sql        |   48 +++++++-----------
7 files changed, 101 insertions(+), 103 deletions(-)