1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Add copy/equal support for XID lists

Commit f10a025cfe added support for List to store Xids, but didn't
handle the new type in all cases.  Add some obviously necessary pieces.
As far as I am aware, this is all dead code as far as core code is
concerned, but it seems unacceptable not to have it in case third-party
code wants to rely on this type of list.  (Some parts of the List API
remain unimplemented, but that can be fixed as and when needed -- see
lack of list_intersection_oid, list_deduplicate_int as precedents.)

Discussion: https://postgr.es/m/20220708164534.nbejhgt4ajz35p65@alvherre.pgsql
This commit is contained in:
Alvaro Herrera
2022-07-12 16:11:04 +02:00
parent d3117fc1a3
commit 5ca0fe5c8a
3 changed files with 14 additions and 2 deletions

View File

@@ -188,6 +188,13 @@ _equalList(const List *a, const List *b)
return false;
}
break;
case T_XidList:
forboth(item_a, a, item_b, b)
{
if (lfirst_xid(item_a) != lfirst_xid(item_b))
return false;
}
break;
default:
elog(ERROR, "unrecognized list node type: %d",
(int) a->type);
@@ -238,6 +245,7 @@ equal(const void *a, const void *b)
case T_List:
case T_IntList:
case T_OidList:
case T_XidList:
retval = _equalList(a, b);
break;