SPI_getrelname() PostgreSQL 7.4.19 Documentation SPI_getrelname()
NAME
SPI_getrelname - return the name of the specified relation
SYNOPSIS
char * SPI_getrelname(Relation rel)
DESCRIPTION
SPI_getrelname returns the name of the specified relation. (You can
use pfree to release the copy of the name when you don’t need it any-
more.)
ARGUMENTS
Relation rel
input relation
RETURN VALUE
The name of the specified relation.
2008-01-03 SPI_getrelname()