SPI_gettypeid (3)
Leading comments
Title: SPI_gettypeid Author: The PostgreSQL Global Development Group Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/> Date: 2017 Manual: PostgreSQL 9.6.5 Documentation Source: PostgreSQL 9.6.5 Language: English
NAME
SPI_gettypeid - return the data type OID of the specified columnSYNOPSIS
Oid SPI_gettypeid(TupleDesc rowdesc, int colnumber)
DESCRIPTION
SPI_gettypeid returns the OID of the data type of the specified column.
ARGUMENTS
TupleDesc rowdesc
- input row description
int colnumber
- column number (count starts at 1)
RETURN VALUE
The OID of the data type of the specified column or InvalidOid on error. On error, SPI_result is set to SPI_ERROR_NOATTRIBUTE.