diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/pageinspect.sgml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/sgml/pageinspect.sgml b/doc/src/sgml/pageinspect.sgml index 35858e15576..0cad08a8a7e 100644 --- a/doc/src/sgml/pageinspect.sgml +++ b/doc/src/sgml/pageinspect.sgml @@ -19,7 +19,7 @@ <variablelist> <varlistentry> <term> - <function>get_raw_page(relname text, fork text, blkno int) returns bytea</function> + <function>get_raw_page(relname text, fork text, blkno bigint) returns bytea</function> <indexterm> <primary>get_raw_page</primary> </indexterm> @@ -40,7 +40,7 @@ <varlistentry> <term> - <function>get_raw_page(relname text, blkno int) returns bytea</function> + <function>get_raw_page(relname text, blkno bigint) returns bytea</function> </term> <listitem> @@ -91,7 +91,7 @@ test=# SELECT * FROM page_header(get_raw_page('pg_class', 0)); <varlistentry> <term> - <function>page_checksum(page bytea, blkno int4) returns smallint</function> + <function>page_checksum(page bytea, blkno bigint) returns smallint</function> <indexterm> <primary>page_checksum</primary> </indexterm> @@ -315,7 +315,7 @@ allequalimage | f <varlistentry> <term> - <function>bt_page_stats(relname text, blkno int) returns record</function> + <function>bt_page_stats(relname text, blkno bigint) returns record</function> <indexterm> <primary>bt_page_stats</primary> </indexterm> @@ -346,7 +346,7 @@ btpo_flags | 3 <varlistentry> <term> - <function>bt_page_items(relname text, blkno int) returns setof record</function> + <function>bt_page_items(relname text, blkno bigint) returns setof record</function> <indexterm> <primary>bt_page_items</primary> </indexterm> @@ -845,7 +845,7 @@ test=# SELECT * FROM hash_page_items(get_raw_page('con_hash_index', 1)) LIMIT 5; <varlistentry> <term> - <function>hash_bitmap_info(index oid, blkno int) returns record</function> + <function>hash_bitmap_info(index oid, blkno bigint) returns record</function> <indexterm> <primary>hash_bitmap_info</primary> </indexterm> |