From 16a6f3bb32268cfe12e3f738cdcbf2fd1001a215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E8=AF=91=E5=B0=8F=E4=BC=99?= <412998149@qq.com> Date: Thu, 10 Oct 2024 07:54:49 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Ddlist=5Fhead=5Fcell=20dlist?= =?UTF-8?q?=5Ftail=5Fcell=E9=9D=9Einline=E7=89=88=E6=9C=AC=E5=A3=B0?= =?UTF-8?q?=E6=98=8E=E5=92=8C=E5=AE=9E=E7=8E=B0=E4=B8=8D=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=20=E5=9C=A8openGauss-server/blob/ma?= =?UTF-8?q?ster/src/include/nodes/pg=5Flist.h`=E4=B8=AD=EF=BC=8C`dlist=5Fh?= =?UTF-8?q?ead=5Fcell`=E5=A3=B0=E6=98=8E=E8=BF=94=E5=9B=9E=E5=80=BC?= =?UTF-8?q?=E4=B8=BAListCell=EF=BC=8C=E4=BD=86=E5=9C=A8=E2=80=98openGauss-?= =?UTF-8?q?server\src\common\backend\nodes\list.cpp=E2=80=99=E4=B8=AD?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E4=B8=BA`DListCell*`=EF=BC=8C=E6=9C=AC=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E4=BF=AE=E5=A4=8D=E6=AD=A4=E4=B8=8D=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 编译小伙 <412998149@qq.com> --- src/include/nodes/pg_list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h index 49cfefa5c8..f7e3f1ce39 100644 --- a/src/include/nodes/pg_list.h +++ b/src/include/nodes/pg_list.h @@ -122,8 +122,8 @@ extern ListCell* list_head(const List* l); extern ListCell* list_tail(List* l); extern int list_length(const List* l); -extern ListCell *dlist_head_cell(const DList *l); -extern ListCell *dlist_tail_cell(DList *l); +extern DListCell *dlist_head_cell(const DList *l); +extern DListCell *dlist_tail_cell(DList *l); #endif /* USE_INLINE */ -- Gitee