Submit
Path:
~
/
/
usr
/
share
/
pgsql
/
extension
/
File Content:
citext--1.4.sql
/* 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;
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
adminpack--1.0--1.1.sql
274 bytes
0644
adminpack--1.0.sql
1535 bytes
0644
adminpack--1.1--2.0.sql
1682 bytes
0644
adminpack--2.0--2.1.sql
595 bytes
0644
adminpack.control
176 bytes
0644
amcheck--1.0--1.1.sql
931 bytes
0644
amcheck--1.0.sql
704 bytes
0644
amcheck--1.1--1.2.sql
705 bytes
0644
amcheck.control
154 bytes
0644
autoinc--1.0.sql
249 bytes
0644
autoinc.control
149 bytes
0644
bloom--1.0.sql
666 bytes
0644
bloom.control
156 bytes
0644
btree_gin--1.0--1.1.sql
1372 bytes
0644
btree_gin--1.0.sql
24818 bytes
0644
btree_gin--1.1--1.2.sql
1445 bytes
0644
btree_gin--1.2--1.3.sql
4571 bytes
0644
btree_gin.control
175 bytes
0644
btree_gist--1.0--1.1.sql
3739 bytes
0644
btree_gist--1.1--1.2.sql
5048 bytes
0644
btree_gist--1.2--1.3.sql
1955 bytes
0644
btree_gist--1.2.sql
41115 bytes
0644
btree_gist--1.3--1.4.sql
1932 bytes
0644
btree_gist--1.4--1.5.sql
1872 bytes
0644
btree_gist.control
178 bytes
0644
citext--1.0--1.1.sql
1028 bytes
0644
citext--1.1--1.2.sql
3424 bytes
0644
citext--1.2--1.3.sql
850 bytes
0644
citext--1.3--1.4.sql
668 bytes
0644
citext--1.4--1.5.sql
2284 bytes
0644
citext--1.4.sql
13466 bytes
0644
citext--1.5--1.6.sql
427 bytes
0644
citext.control
173 bytes
0644
cube--1.0--1.1.sql
1594 bytes
0644
cube--1.1--1.2.sql
3815 bytes
0644
cube--1.2--1.3.sql
365 bytes
0644
cube--1.2.sql
9761 bytes
0644
cube--1.3--1.4.sql
2387 bytes
0644
cube.control
157 bytes
0644
dblink--1.0--1.1.sql
419 bytes
0644
dblink--1.1--1.2.sql
2832 bytes
0644
dblink--1.2.sql
6645 bytes
0644
dblink.control
170 bytes
0644
dict_int--1.0.sql
711 bytes
0644
dict_int.control
173 bytes
0644
dict_xsyn--1.0.sql
694 bytes
0644
dict_xsyn.control
179 bytes
0644
earthdistance--1.0--1.1.sql
671 bytes
0644
earthdistance--1.1.sql
3234 bytes
0644
earthdistance.control
202 bytes
0644
file_fdw--1.0.sql
475 bytes
0644
file_fdw.control
155 bytes
0644
fuzzystrmatch--1.0--1.1.sql
788 bytes
0644
fuzzystrmatch--1.1.sql
1576 bytes
0644
fuzzystrmatch.control
190 bytes
0644
hstore--1.0--1.1.sql
279 bytes
0644
hstore--1.1--1.2.sql
1639 bytes
0644
hstore--1.2--1.3.sql
525 bytes
0644
hstore--1.3--1.4.sql
5310 bytes
0644
hstore--1.4--1.5.sql
409 bytes
0644
hstore--1.4.sql
13765 bytes
0644
hstore--1.5--1.6.sql
455 bytes
0644
hstore--1.6--1.7.sql
1061 bytes
0644
hstore.control
173 bytes
0644
hstore_plperl--1.0.sql
580 bytes
0644
hstore_plperl.control
186 bytes
0644
hstore_plperlu--1.0.sql
627 bytes
0644
hstore_plperlu.control
189 bytes
0644
hstore_plpython3u--1.0.sql
750 bytes
0644
hstore_plpython3u.control
201 bytes
0644
insert_username--1.0.sql
273 bytes
0644
insert_username.control
170 bytes
0644
intagg--1.0--1.1.sql
897 bytes
0644
intagg--1.1.sql
1089 bytes
0644
intagg.control
119 bytes
0644
intarray--1.0--1.1.sql
1794 bytes
0644
intarray--1.1--1.2.sql
5525 bytes
0644
intarray--1.2--1.3.sql
663 bytes
0644
intarray--1.2.sql
12293 bytes
0644
intarray.control
191 bytes
0644
isn--1.0--1.1.sql
12333 bytes
0644
isn--1.1--1.2.sql
5264 bytes
0644
isn--1.1.sql
69885 bytes
0644
isn.control
175 bytes
0644
jsonb_plperl--1.0.sql
658 bytes
0644
jsonb_plperl.control
191 bytes
0644
jsonb_plperlu--1.0.sql
704 bytes
0644
jsonb_plperlu.control
178 bytes
0644
jsonb_plpython3u--1.0.sql
732 bytes
0644
jsonb_plpython3u.control
191 bytes
0644
lo--1.0--1.1.sql
223 bytes
0644
lo--1.1.sql
722 bytes
0644
lo.control
141 bytes
0644
ltree--1.0--1.1.sql
6336 bytes
0644
ltree--1.1--1.2.sql
5217 bytes
0644
ltree--1.1.sql
19375 bytes
0644
ltree.control
170 bytes
0644
ltree_plpython3u--1.0.sql
449 bytes
0644
ltree_plpython3u.control
197 bytes
0644
moddatetime--1.0.sql
261 bytes
0644
moddatetime.control
165 bytes
0644
pageinspect--1.0--1.1.sql
560 bytes
0644
pageinspect--1.1--1.2.sql
562 bytes
0644
pageinspect--1.2--1.3.sql
1946 bytes
0644
pageinspect--1.3--1.4.sql
2566 bytes
0644
pageinspect--1.4--1.5.sql
1347 bytes
0644
pageinspect--1.5--1.6.sql
2252 bytes
0644
pageinspect--1.5.sql
6262 bytes
0644
pageinspect--1.6--1.7.sql
698 bytes
0644
pageinspect--1.7--1.8.sql
1711 bytes
0644
pageinspect.control
173 bytes
0644
pg_buffercache--1.0--1.1.sql
508 bytes
0644
pg_buffercache--1.1--1.2.sql
271 bytes
0644
pg_buffercache--1.2--1.3.sql
328 bytes
0644
pg_buffercache--1.2.sql
794 bytes
0644
pg_buffercache.control
157 bytes
0644
pg_freespacemap--1.0--1.1.sql
335 bytes
0644
pg_freespacemap--1.1--1.2.sql
377 bytes
0644
pg_freespacemap--1.1.sql
899 bytes
0644
pg_freespacemap.control
160 bytes
0644
pg_prewarm--1.0--1.1.sql
281 bytes
0644
pg_prewarm--1.1--1.2.sql
458 bytes
0644
pg_prewarm--1.1.sql
475 bytes
0644
pg_prewarm.control
139 bytes
0644
pg_stat_statements--1.0--1.1.sql
1246 bytes
0644
pg_stat_statements--1.1--1.2.sql
1336 bytes
0644
pg_stat_statements--1.2--1.3.sql
1454 bytes
0644
pg_stat_statements--1.3--1.4.sql
345 bytes
0644
pg_stat_statements--1.4--1.5.sql
305 bytes
0644
pg_stat_statements--1.4.sql
1427 bytes
0644
pg_stat_statements--1.5--1.6.sql
376 bytes
0644
pg_stat_statements--1.6--1.7.sql
806 bytes
0644
pg_stat_statements--1.7--1.8.sql
1744 bytes
0644
pg_stat_statements.control
204 bytes
0644
pg_trgm--1.0--1.1.sql
536 bytes
0644
pg_trgm--1.1--1.2.sql
2192 bytes
0644
pg_trgm--1.2--1.3.sql
3498 bytes
0644
pg_trgm--1.3--1.4.sql
2045 bytes
0644
pg_trgm--1.3.sql
7942 bytes
0644
pg_trgm--1.4--1.5.sql
858 bytes
0644
pg_trgm.control
192 bytes
0644
pg_visibility--1.0--1.1.sql
883 bytes
0644
pg_visibility--1.1--1.2.sql
833 bytes
0644
pg_visibility--1.1.sql
2825 bytes
0644
pg_visibility.control
186 bytes
0644
pgcrypto--1.0--1.1.sql
307 bytes
0644
pgcrypto--1.1--1.2.sql
483 bytes
0644
pgcrypto--1.2--1.3.sql
2346 bytes
0644
pgcrypto--1.3.sql
5708 bytes
0644
pgcrypto.control
152 bytes
0644
pgrowlocks--1.0--1.1.sql
651 bytes
0644
pgrowlocks--1.1--1.2.sql
253 bytes
0644
pgrowlocks--1.2.sql
555 bytes
0644
pgrowlocks.control
152 bytes
0644
pgstattuple--1.0--1.1.sql
400 bytes
0644
pgstattuple--1.1--1.2.sql
1435 bytes
0644
pgstattuple--1.2--1.3.sql
1126 bytes
0644
pgstattuple--1.3--1.4.sql
623 bytes
0644
pgstattuple--1.4--1.5.sql
5506 bytes
0644
pgstattuple--1.4.sql
3764 bytes
0644
pgstattuple.control
147 bytes
0644
plpgsql--1.0.sql
658 bytes
0644
plpgsql.control
193 bytes
0644
postgres_fdw--1.0.sql
507 bytes
0644
postgres_fdw.control
172 bytes
0644
refint--1.0.sql
343 bytes
0644
refint.control
169 bytes
0644
seg--1.0--1.1.sql
3005 bytes
0644
seg--1.1--1.2.sql
360 bytes
0644
seg--1.1.sql
8142 bytes
0644
seg--1.2--1.3.sql
2344 bytes
0644
seg.control
187 bytes
0644
sslinfo--1.0--1.1.sql
375 bytes
0644
sslinfo--1.1--1.2.sql
746 bytes
0644
sslinfo--1.2.sql
1534 bytes
0644
sslinfo.control
146 bytes
0644
tablefunc--1.0.sql
2153 bytes
0644
tablefunc.control
189 bytes
0644
tcn--1.0.sql
274 bytes
0644
tcn.control
149 bytes
0644
tsm_system_rows--1.0.sql
327 bytes
0644
tsm_system_rows.control
201 bytes
0644
tsm_system_time--1.0.sql
327 bytes
0644
tsm_system_time.control
207 bytes
0644
unaccent--1.0--1.1.sql
445 bytes
0644
unaccent--1.1.sql
910 bytes
0644
unaccent.control
172 bytes
0644
uuid-ossp--1.0--1.1.sql
688 bytes
0644
uuid-ossp--1.1.sql
1516 bytes
0644
uuid-ossp.control
178 bytes
0644
xml2--1.0--1.1.sql
944 bytes
0644
xml2--1.1.sql
2049 bytes
0644
xml2.control
182 bytes
0644
N4ST4R_ID | Naxtarrr