Postgresql 中文操作指南 47. Server Programming Interface 47.3. Memory Management SPI_palloc Postgresql 中文操作指南 SPI_palloc SPI_palloc — 在上执行程序上下文中分配内存 SPI_palloc — allocate memory in the upper executor context Synopsis void * SPI_palloc(Size size) Description SPI_palloc 在上执行程序上下文中分配内存。 SPI_palloc allocates memory in the upper executor context. 此函数只能在连接到 SPI 时使用。否则会引发错误。 This function can only be used while connected to SPI. Otherwise, it throws an error. Arguments Size _size_ size in bytes of storage to allocate Return Value 指向指定大小的新存储空间的指针 pointer to new storage space of the specified size