mirror of https://github.com/postgres/postgres
17 lines
505 B
SQL
17 lines
505 B
SQL
/* contrib/pageinspect/pageinspect--1.7--1.8.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION pageinspect UPDATE TO '1.8'" to load this file. \quit
|
|
|
|
--
|
|
-- heap_tuple_infomask_flags()
|
|
--
|
|
CREATE FUNCTION heap_tuple_infomask_flags(
|
|
t_infomask integer,
|
|
t_infomask2 integer,
|
|
raw_flags OUT text[],
|
|
combined_flags OUT text[])
|
|
RETURNS record
|
|
AS 'MODULE_PATHNAME', 'heap_tuple_infomask_flags'
|
|
LANGUAGE C STRICT PARALLEL SAFE;
|