pgsql: Remove duplicate lines of code

Поиск
Список
Период
Сортировка
От Daniel Gustafsson
Тема pgsql: Remove duplicate lines of code
Дата
Msg-id E1pqsZi-004eeR-Km@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove duplicate lines of code

Commit 6df7a9698bb accidentally included two identical prototypes for
default_multirange_selectivi() and commit 086cf1458c6 added a break;
statement where one was already present, thus duplicating it.  While
there is no bug caused by this, fix by removing the duplicated lines
as they provide no value.

Backpatch the fix for duplicate prototypes to v14 and the duplicate
break statement fix to all supported branches to avoid backpatching
hazards due to the removal.

Reported-by: Anton Voloshin <a.voloshin@postgrespro.ru>
Discussion: https://postgr.es/m/0e69cb60-0176-f6d0-7e15-6478b7d85724@postgrespro.ru

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/69537f5d17eab2919c9d88880cb242de1e7a647d

Modified Files
--------------
src/backend/utils/adt/multirangetypes_selfuncs.c | 1 -
src/interfaces/ecpg/preproc/variable.c           | 1 -
2 files changed, 2 deletions(-)


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

Предыдущее
От: Masahiko Sawada
Дата:
Сообщение: pgsql: Use elog to report unexpected action in handle_streamed_transact
Следующее
От: Daniel Gustafsson
Дата:
Сообщение: pgsql: Remove duplicate lines of code