mirror of
https://github.com/postgres/postgres.git
synced 2026-04-08 02:35:51 -04:00
Remove duplicate lines of code
Commit6df7a9698baccidentally included two identical prototypes for default_multirange_selectivi() and commit086cf1458cadded 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
This commit is contained in:
parent
106a1bf824
commit
082b59335d
1 changed files with 0 additions and 1 deletions
|
|
@ -105,7 +105,6 @@ find_struct_member(char *name, char *str, struct ECPGstruct_member *members, int
|
|||
else
|
||||
return find_struct_member(name, ++end, members->type->u.members, brace_level);
|
||||
break;
|
||||
break;
|
||||
case '.':
|
||||
if (members->type->type == ECPGt_array)
|
||||
return find_struct_member(name, end, members->type->u.element->u.members, brace_level);
|
||||
|
|
|
|||
Loading…
Reference in a new issue