PostgreSQL 语法分析中所使用的List

根据我的分析,

其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 指向下一个节点。

posted @ 2012-09-06 14:44  健哥的数据花园  阅读(580)  评论(0编辑  收藏  举报