Development Versions: 19 / devel
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the current version, or one of the other supported versions listed above instead.

9.14. TID Functions #

Table 9.45 lists functions for the tid data type (tuple identifier).

Table 9.45. TID Functions

Function

Description

Example(s)

tid_block ( tid ) → bigint

Extracts the block number from a tuple identifier.

tid_block('(42,7)'::tid)42

tid_offset ( tid ) → integer

Extracts the tuple offset within the block from a tuple identifier.

tid_offset('(42,7)'::tid)7