aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2022-07-12 16:11:04 +0200
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2022-07-12 16:11:04 +0200
commit5ca0fe5c8ad7987beee95669124c7e245f2816d8 (patch)
tree4cf85f19d93b150385d43299d1696923bf1c65c5 /src/backend/nodes/copyfuncs.c
parentd3117fc1a3e87717a57be0153408e5387e265e1b (diff)
downloadpostgresql-5ca0fe5c8ad7987beee95669124c7e245f2816d8.tar.gz
postgresql-5ca0fe5c8ad7987beee95669124c7e245f2816d8.zip
Add copy/equal support for XID lists
Commit f10a025cfe97 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
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r--src/backend/nodes/copyfuncs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c
index b8e40a4195a..e76fda8eba3 100644
--- a/src/backend/nodes/copyfuncs.c
+++ b/src/backend/nodes/copyfuncs.c
@@ -187,11 +187,12 @@ copyObjectImpl(const void *from)
break;
/*
- * Lists of integers and OIDs don't need to be deep-copied, so we
- * perform a shallow copy via list_copy()
+ * Lists of integers, OIDs and XIDs don't need to be deep-copied,
+ * so we perform a shallow copy via list_copy()
*/
case T_IntList:
case T_OidList:
+ case T_XidList:
retval = list_copy(from);
break;