pgsql: Fix end-of-loop optimization in pglz_find_match() function.

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Fix end-of-loop optimization in pglz_find_match() function.
Дата
Msg-id E1UzVfS-0007el-5R@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix end-of-loop optimization in pglz_find_match() function.

After the recent pglz optimization patch, the next/prev pointers in the
hash table are never NULL, INVALID_ENTRY_PTR is used to represent invalid
entries instead. The end-of-loop check in pglz_find_match() function didn't
get the memo. The result was the same from a correctness point of view, but
because the NULL-check would never fail, the tiny optimization turned into
a pessimization.

Reported by Stephen Frost, using Coverity scanner.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/3f2adace1ec025908b5189f0773b4eaab3d228d5

Modified Files
--------------
src/backend/utils/adt/pg_lzcompress.c |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


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

Предыдущее
От: Fujii Masao
Дата:
Сообщение: pgsql: Fix typo in previous pgbench --progress patch.
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Fix assert failure at end of recovery, broken by XLogInsert scal