1SPI_PFREE(3) PostgreSQL 10.7 Documentation SPI_PFREE(3)
23
4
NAME
6SPI_pfree - free memory in the upper executor context
7
SYNOPSIS
9void SPI_pfree(void * pointer)
10
DESCRIPTION
12SPI_pfree frees memory previously allocated using SPI_palloc or
13SPI_repalloc.
1415
This function is no longer different from plain pfree. It's kept just
16for backward compatibility of existing code.
17
ARGUMENTS
19void * pointer
20pointer to existing storage to free
2122
23
24
PostgreSQL 10.7 2019 SPI_PFREE(3)