根据我的分析,
其List 的定义,来自于:
./src/include/pg_list.h
typedef struct List
{
NodeTag type; /*T_List, T_IntList or T_OidList*/
int length;
ListCell *head;
ListCell *tail;
} List;
是一个链表结构。*tail 指向下一个节点。