当我编译我得到的扩展时,我得到了
error: ‘work_mem’ undeclared (first use in this function)
17 | Tuplestorestate *tupstore = tuplestore_begin_heap(true, false, work_mem);
什么标题包括work_mem
?
当我编译我得到的扩展时,我得到了
error: ‘work_mem’ undeclared (first use in this function)
17 | Tuplestorestate *tupstore = tuplestore_begin_heap(true, false, work_mem);
什么标题包括work_mem
?
该work_mem
符号由misadmin.h
您提供,您必须将该标题添加到您的.c
文件中。
#include "miscadmin.h"