pgsql: Allow Memoize to operate in binary comparison mode

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Allow Memoize to operate in binary comparison mode
Дата
Msg-id E1mpd0f-0000q6-8f@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Allow Memoize to operate in binary comparison mode

Memoize would always use the hash equality operator for the cache key
types to determine if the current set of parameters were the same as some
previously cached set.  Certain types such as floating points where -0.0
and +0.0 differ in their binary representation but are classed as equal by
the hash equality operator may cause problems as unless the join uses the
same operator it's possible that whichever join operator is being used
would be able to distinguish the two values.  In which case we may
accidentally return in the incorrect rows out of the cache.

To fix this here we add a binary mode to Memoize to allow it to the
current set of parameters to previously cached values by comparing
bit-by-bit rather than logically using the hash equality operator.  This
binary mode is always used for LATERAL joins and it's used for normal
joins when any of the join operators are not hashable.

Reported-by: Tom Lane
Author: David Rowley
Discussion: https://postgr.es/m/3004308.1632952496@sss.pgh.pa.us
Backpatch-through: 14, where Memoize was added

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e502150f7d0be41e3c8784be007fa871a32d8a7f

Modified Files
--------------
contrib/postgres_fdw/expected/postgres_fdw.out |  3 +-
src/backend/commands/explain.c                 |  3 +
src/backend/executor/nodeMemoize.c             | 92 ++++++++++++++++++++-----
src/backend/nodes/copyfuncs.c                  |  1 +
src/backend/nodes/outfuncs.c                   |  2 +
src/backend/nodes/readfuncs.c                  |  1 +
src/backend/optimizer/path/joinpath.c          | 38 +++++++++--
src/backend/optimizer/plan/createplan.c        | 10 ++-
src/backend/optimizer/util/pathnode.c          |  4 +-
src/backend/utils/adt/datum.c                  | 52 ++++++++++++++
src/include/nodes/execnodes.h                  |  2 +
src/include/nodes/pathnodes.h                  |  2 +
src/include/nodes/plannodes.h                  |  2 +
src/include/optimizer/pathnode.h               |  1 +
src/include/utils/datum.h                      |  8 +++
src/test/regress/expected/join.out             | 28 +++++---
src/test/regress/expected/memoize.out          | 93 ++++++++++++++++++++++++--
src/test/regress/expected/subselect.out        |  3 +-
src/test/regress/sql/memoize.sql               | 39 +++++++++++
19 files changed, 345 insertions(+), 39 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Add SQL functions to monitor the directory contents of replicati
Следующее
От: David Rowley
Дата:
Сообщение: pgsql: Allow Memoize to operate in binary comparison mode