mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
a338d65461
HeapTupleHeader's t_infomask and t_infomask2 are defined as 16-bit unsigned integers, so when the 16th bit was set, heap_page_item was returning them as negative values, which was ugly. The change to pageinspect--unpackaged--1.0.sql allows a module upgraded from 9.0 to be cleanly updated from the previous definition.
29 lines
958 B
SQL
29 lines
958 B
SQL
/* contrib/pageinspect/pageinspect--unpackaged--1.0.sql */
|
|
|
|
DROP FUNCTION heap_page_items(bytea);
|
|
CREATE FUNCTION heap_page_items(IN page bytea,
|
|
OUT lp smallint,
|
|
OUT lp_off smallint,
|
|
OUT lp_flags smallint,
|
|
OUT lp_len smallint,
|
|
OUT t_xmin xid,
|
|
OUT t_xmax xid,
|
|
OUT t_field3 int4,
|
|
OUT t_ctid tid,
|
|
OUT t_infomask2 integer,
|
|
OUT t_infomask integer,
|
|
OUT t_hoff smallint,
|
|
OUT t_bits text,
|
|
OUT t_oid oid)
|
|
RETURNS SETOF record
|
|
AS 'MODULE_PATHNAME', 'heap_page_items'
|
|
LANGUAGE C STRICT;
|
|
|
|
ALTER EXTENSION pageinspect ADD function get_raw_page(text,integer);
|
|
ALTER EXTENSION pageinspect ADD function get_raw_page(text,text,integer);
|
|
ALTER EXTENSION pageinspect ADD function page_header(bytea);
|
|
ALTER EXTENSION pageinspect ADD function bt_metap(text);
|
|
ALTER EXTENSION pageinspect ADD function bt_page_stats(text,integer);
|
|
ALTER EXTENSION pageinspect ADD function bt_page_items(text,integer);
|
|
ALTER EXTENSION pageinspect ADD function fsm_page_contents(bytea);
|