codekingpro commited on
Commit
a122127
·
verified ·
1 Parent(s): e1ef231

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. pgsql/share/extension/uuid-ossp--1.0--1.1.sql +15 -0
  2. pgsql/share/extension/uuid-ossp--1.1.sql +54 -0
  3. pgsql/share/extension/uuid-ossp.control +6 -0
  4. pgsql/share/extension/worker_spi--1.0.sql +9 -0
  5. pgsql/share/extension/worker_spi.control +5 -0
  6. pgsql/share/extension/xml2--1.0--1.1.sql +18 -0
  7. pgsql/share/extension/xml2--1.1.sql +73 -0
  8. pgsql/share/extension/xml2.control +6 -0
  9. pgsql/share/locale/el/LC_MESSAGES/ecpg-16.mo +0 -0
  10. pgsql/share/locale/el/LC_MESSAGES/ecpglib-16.mo +0 -0
  11. pgsql/share/locale/el/LC_MESSAGES/initdb-16.mo +0 -0
  12. pgsql/share/locale/el/LC_MESSAGES/libpq-16.mo +0 -0
  13. pgsql/share/locale/el/LC_MESSAGES/pg_amcheck-16.mo +0 -0
  14. pgsql/share/locale/el/LC_MESSAGES/pgscripts-16.mo +0 -0
  15. pgsql/share/locale/es/LC_MESSAGES/ecpg-16.mo +0 -0
  16. pgsql/share/locale/es/LC_MESSAGES/ecpglib-16.mo +0 -0
  17. pgsql/share/locale/es/LC_MESSAGES/initdb-16.mo +0 -0
  18. pgsql/share/locale/es/LC_MESSAGES/libpq-16.mo +0 -0
  19. pgsql/share/locale/es/LC_MESSAGES/pg_amcheck-16.mo +0 -0
  20. pgsql/share/locale/es/LC_MESSAGES/pg_archivecleanup-16.mo +0 -0
  21. pgsql/share/locale/es/LC_MESSAGES/pg_basebackup-16.mo +0 -0
  22. pgsql/share/locale/es/LC_MESSAGES/pg_checksums-16.mo +0 -0
  23. pgsql/share/locale/es/LC_MESSAGES/pg_config-16.mo +0 -0
  24. pgsql/share/locale/es/LC_MESSAGES/pg_controldata-16.mo +0 -0
  25. pgsql/share/locale/es/LC_MESSAGES/pg_ctl-16.mo +0 -0
  26. pgsql/share/locale/es/LC_MESSAGES/pg_dump-16.mo +0 -0
  27. pgsql/share/locale/es/LC_MESSAGES/pg_resetwal-16.mo +0 -0
  28. pgsql/share/locale/es/LC_MESSAGES/pg_rewind-16.mo +0 -0
  29. pgsql/share/locale/es/LC_MESSAGES/pg_test_fsync-16.mo +0 -0
  30. pgsql/share/locale/es/LC_MESSAGES/pg_test_timing-16.mo +0 -0
  31. pgsql/share/locale/es/LC_MESSAGES/pg_upgrade-16.mo +0 -0
  32. pgsql/share/locale/es/LC_MESSAGES/pg_verifybackup-16.mo +0 -0
  33. pgsql/share/locale/es/LC_MESSAGES/pg_waldump-16.mo +0 -0
  34. pgsql/share/locale/es/LC_MESSAGES/pgscripts-16.mo +0 -0
  35. pgsql/share/locale/es/LC_MESSAGES/plperl-16.mo +0 -0
  36. pgsql/share/locale/es/LC_MESSAGES/plpgsql-16.mo +0 -0
  37. pgsql/share/locale/es/LC_MESSAGES/plpython-16.mo +0 -0
  38. pgsql/share/locale/es/LC_MESSAGES/pltcl-16.mo +0 -0
  39. pgsql/share/locale/fr/LC_MESSAGES/ecpg-16.mo +0 -0
  40. pgsql/share/locale/fr/LC_MESSAGES/ecpglib-16.mo +0 -0
  41. pgsql/share/locale/fr/LC_MESSAGES/initdb-16.mo +0 -0
  42. pgsql/share/locale/fr/LC_MESSAGES/libpq-16.mo +0 -0
  43. pgsql/share/locale/fr/LC_MESSAGES/pg_amcheck-16.mo +0 -0
  44. pgsql/share/locale/fr/LC_MESSAGES/pg_archivecleanup-16.mo +0 -0
  45. pgsql/share/locale/fr/LC_MESSAGES/pg_basebackup-16.mo +0 -0
  46. pgsql/share/locale/fr/LC_MESSAGES/pg_checksums-16.mo +0 -0
  47. pgsql/share/locale/fr/LC_MESSAGES/pg_config-16.mo +0 -0
  48. pgsql/share/locale/fr/LC_MESSAGES/pg_controldata-16.mo +0 -0
  49. pgsql/share/locale/fr/LC_MESSAGES/pg_ctl-16.mo +0 -0
  50. pgsql/share/locale/fr/LC_MESSAGES/pg_dump-16.mo +0 -0
pgsql/share/extension/uuid-ossp--1.0--1.1.sql ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* contrib/uuid-ossp/uuid-ossp--1.0--1.1.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4
+ \echo Use "ALTER EXTENSION uuid-ossp UPDATE TO '1.1'" to load this file. \quit
5
+
6
+ ALTER FUNCTION uuid_nil() PARALLEL SAFE;
7
+ ALTER FUNCTION uuid_ns_dns() PARALLEL SAFE;
8
+ ALTER FUNCTION uuid_ns_url() PARALLEL SAFE;
9
+ ALTER FUNCTION uuid_ns_oid() PARALLEL SAFE;
10
+ ALTER FUNCTION uuid_ns_x500() PARALLEL SAFE;
11
+ ALTER FUNCTION uuid_generate_v1() PARALLEL SAFE;
12
+ ALTER FUNCTION uuid_generate_v1mc() PARALLEL SAFE;
13
+ ALTER FUNCTION uuid_generate_v3(uuid, text) PARALLEL SAFE;
14
+ ALTER FUNCTION uuid_generate_v4() PARALLEL SAFE;
15
+ ALTER FUNCTION uuid_generate_v5(uuid, text) PARALLEL SAFE;
pgsql/share/extension/uuid-ossp--1.1.sql ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* contrib/uuid-ossp/uuid-ossp--1.1.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4
+ \echo Use '''CREATE EXTENSION "uuid-ossp"''' to load this file. \quit
5
+
6
+ CREATE FUNCTION uuid_nil()
7
+ RETURNS uuid
8
+ AS 'MODULE_PATHNAME', 'uuid_nil'
9
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
10
+
11
+ CREATE FUNCTION uuid_ns_dns()
12
+ RETURNS uuid
13
+ AS 'MODULE_PATHNAME', 'uuid_ns_dns'
14
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
15
+
16
+ CREATE FUNCTION uuid_ns_url()
17
+ RETURNS uuid
18
+ AS 'MODULE_PATHNAME', 'uuid_ns_url'
19
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
20
+
21
+ CREATE FUNCTION uuid_ns_oid()
22
+ RETURNS uuid
23
+ AS 'MODULE_PATHNAME', 'uuid_ns_oid'
24
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
25
+
26
+ CREATE FUNCTION uuid_ns_x500()
27
+ RETURNS uuid
28
+ AS 'MODULE_PATHNAME', 'uuid_ns_x500'
29
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
30
+
31
+ CREATE FUNCTION uuid_generate_v1()
32
+ RETURNS uuid
33
+ AS 'MODULE_PATHNAME', 'uuid_generate_v1'
34
+ VOLATILE STRICT LANGUAGE C PARALLEL SAFE;
35
+
36
+ CREATE FUNCTION uuid_generate_v1mc()
37
+ RETURNS uuid
38
+ AS 'MODULE_PATHNAME', 'uuid_generate_v1mc'
39
+ VOLATILE STRICT LANGUAGE C PARALLEL SAFE;
40
+
41
+ CREATE FUNCTION uuid_generate_v3(namespace uuid, name text)
42
+ RETURNS uuid
43
+ AS 'MODULE_PATHNAME', 'uuid_generate_v3'
44
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
45
+
46
+ CREATE FUNCTION uuid_generate_v4()
47
+ RETURNS uuid
48
+ AS 'MODULE_PATHNAME', 'uuid_generate_v4'
49
+ VOLATILE STRICT LANGUAGE C PARALLEL SAFE;
50
+
51
+ CREATE FUNCTION uuid_generate_v5(namespace uuid, name text)
52
+ RETURNS uuid
53
+ AS 'MODULE_PATHNAME', 'uuid_generate_v5'
54
+ IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
pgsql/share/extension/uuid-ossp.control ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # uuid-ossp extension
2
+ comment = 'generate universally unique identifiers (UUIDs)'
3
+ default_version = '1.1'
4
+ module_pathname = '$libdir/uuid-ossp'
5
+ relocatable = true
6
+ trusted = true
pgsql/share/extension/worker_spi--1.0.sql ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ /* src/test/modules/worker_spi/worker_spi--1.0.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4
+ \echo Use "CREATE EXTENSION worker_spi" to load this file. \quit
5
+
6
+ CREATE FUNCTION worker_spi_launch(pg_catalog.int4)
7
+ RETURNS pg_catalog.int4 STRICT
8
+ AS 'MODULE_PATHNAME'
9
+ LANGUAGE C;
pgsql/share/extension/worker_spi.control ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # worker_spi extension
2
+ comment = 'Sample background worker'
3
+ default_version = '1.0'
4
+ module_pathname = '$libdir/worker_spi'
5
+ relocatable = true
pgsql/share/extension/xml2--1.0--1.1.sql ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* contrib/xml2/xml2--1.0--1.1.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4
+ \echo Use "ALTER EXTENSION xml2 UPDATE TO '1.1'" to load this file. \quit
5
+
6
+ ALTER FUNCTION xml_valid(text) PARALLEL SAFE;
7
+ ALTER FUNCTION xml_encode_special_chars(text) PARALLEL SAFE;
8
+ ALTER FUNCTION xpath_string(text, text) PARALLEL SAFE;
9
+ ALTER FUNCTION xpath_nodeset(text, text, text, text) PARALLEL SAFE;
10
+ ALTER FUNCTION xpath_number(text, text) PARALLEL SAFE;
11
+ ALTER FUNCTION xpath_bool(text, text) PARALLEL SAFE;
12
+ ALTER FUNCTION xpath_list(text, text, text) PARALLEL SAFE;
13
+ ALTER FUNCTION xpath_list(text, text) PARALLEL SAFE;
14
+ ALTER FUNCTION xpath_nodeset(text, text) PARALLEL SAFE;
15
+ ALTER FUNCTION xpath_nodeset(text, text, text) PARALLEL SAFE;
16
+ ALTER FUNCTION xpath_table(text, text, text, text, text) PARALLEL SAFE;
17
+ ALTER FUNCTION xslt_process(text, text, text) PARALLEL SAFE;
18
+ ALTER FUNCTION xslt_process(text, text) PARALLEL SAFE;
pgsql/share/extension/xml2--1.1.sql ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* contrib/xml2/xml2--1.1.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4
+ \echo Use "CREATE EXTENSION xml2" to load this file. \quit
5
+
6
+ --SQL for XML parser
7
+
8
+ -- deprecated old name for xml_is_well_formed
9
+ CREATE FUNCTION xml_valid(text) RETURNS bool
10
+ AS 'xml_is_well_formed'
11
+ LANGUAGE INTERNAL STRICT STABLE PARALLEL SAFE;
12
+
13
+ CREATE FUNCTION xml_encode_special_chars(text) RETURNS text
14
+ AS 'MODULE_PATHNAME'
15
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
16
+
17
+ CREATE FUNCTION xpath_string(text,text) RETURNS text
18
+ AS 'MODULE_PATHNAME'
19
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
20
+
21
+ CREATE FUNCTION xpath_nodeset(text,text,text,text) RETURNS text
22
+ AS 'MODULE_PATHNAME'
23
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
24
+
25
+ CREATE FUNCTION xpath_number(text,text) RETURNS float4
26
+ AS 'MODULE_PATHNAME'
27
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
28
+
29
+ CREATE FUNCTION xpath_bool(text,text) RETURNS boolean
30
+ AS 'MODULE_PATHNAME'
31
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
32
+
33
+ -- List function
34
+
35
+ CREATE FUNCTION xpath_list(text,text,text) RETURNS text
36
+ AS 'MODULE_PATHNAME'
37
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
38
+
39
+ CREATE FUNCTION xpath_list(text,text) RETURNS text
40
+ AS 'SELECT xpath_list($1,$2,'','')'
41
+ LANGUAGE SQL STRICT IMMUTABLE PARALLEL SAFE;
42
+
43
+ -- Wrapper functions for nodeset where no tags needed
44
+
45
+ CREATE FUNCTION xpath_nodeset(text,text)
46
+ RETURNS text
47
+ AS 'SELECT xpath_nodeset($1,$2,'''','''')'
48
+ LANGUAGE SQL STRICT IMMUTABLE PARALLEL SAFE;
49
+
50
+ CREATE FUNCTION xpath_nodeset(text,text,text)
51
+ RETURNS text
52
+ AS 'SELECT xpath_nodeset($1,$2,'''',$3)'
53
+ LANGUAGE SQL STRICT IMMUTABLE PARALLEL SAFE;
54
+
55
+ -- Table function
56
+
57
+ CREATE FUNCTION xpath_table(text,text,text,text,text)
58
+ RETURNS setof record
59
+ AS 'MODULE_PATHNAME'
60
+ LANGUAGE C STRICT STABLE PARALLEL SAFE;
61
+
62
+ -- XSLT functions
63
+
64
+ CREATE FUNCTION xslt_process(text,text,text)
65
+ RETURNS text
66
+ AS 'MODULE_PATHNAME'
67
+ LANGUAGE C STRICT VOLATILE PARALLEL SAFE;
68
+
69
+ -- the function checks for the correct argument count
70
+ CREATE FUNCTION xslt_process(text,text)
71
+ RETURNS text
72
+ AS 'MODULE_PATHNAME'
73
+ LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
pgsql/share/extension/xml2.control ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # xml2 extension
2
+ comment = 'XPath querying and XSLT'
3
+ default_version = '1.1'
4
+ module_pathname = '$libdir/pgxml'
5
+ # XXX do we still need this to be non-relocatable?
6
+ relocatable = false
pgsql/share/locale/el/LC_MESSAGES/ecpg-16.mo ADDED
Binary file (20.6 kB). View file
 
pgsql/share/locale/el/LC_MESSAGES/ecpglib-16.mo ADDED
Binary file (4.78 kB). View file
 
pgsql/share/locale/el/LC_MESSAGES/initdb-16.mo ADDED
Binary file (34.8 kB). View file
 
pgsql/share/locale/el/LC_MESSAGES/libpq-16.mo ADDED
Binary file (48.3 kB). View file
 
pgsql/share/locale/el/LC_MESSAGES/pg_amcheck-16.mo ADDED
Binary file (15.8 kB). View file
 
pgsql/share/locale/el/LC_MESSAGES/pgscripts-16.mo ADDED
Binary file (42 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/ecpg-16.mo ADDED
Binary file (15.8 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/ecpglib-16.mo ADDED
Binary file (3.8 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/initdb-16.mo ADDED
Binary file (26.3 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/libpq-16.mo ADDED
Binary file (35.9 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_amcheck-16.mo ADDED
Binary file (12.5 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_archivecleanup-16.mo ADDED
Binary file (3.77 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_basebackup-16.mo ADDED
Binary file (43.9 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_checksums-16.mo ADDED
Binary file (6.86 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_config-16.mo ADDED
Binary file (6.56 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_controldata-16.mo ADDED
Binary file (11.1 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_ctl-16.mo ADDED
Binary file (20 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_dump-16.mo ADDED
Binary file (69.3 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_resetwal-16.mo ADDED
Binary file (14.7 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_rewind-16.mo ADDED
Binary file (25.5 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_test_fsync-16.mo ADDED
Binary file (4.21 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_test_timing-16.mo ADDED
Binary file (1.79 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_upgrade-16.mo ADDED
Binary file (47.9 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_verifybackup-16.mo ADDED
Binary file (11.6 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pg_waldump-16.mo ADDED
Binary file (15.2 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pgscripts-16.mo ADDED
Binary file (32.2 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/plperl-16.mo ADDED
Binary file (5.91 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/plpgsql-16.mo ADDED
Binary file (20.8 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/plpython-16.mo ADDED
Binary file (11.3 kB). View file
 
pgsql/share/locale/es/LC_MESSAGES/pltcl-16.mo ADDED
Binary file (2.84 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/ecpg-16.mo ADDED
Binary file (16.3 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/ecpglib-16.mo ADDED
Binary file (3.99 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/initdb-16.mo ADDED
Binary file (27.6 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/libpq-16.mo ADDED
Binary file (35.8 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_amcheck-16.mo ADDED
Binary file (12.9 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_archivecleanup-16.mo ADDED
Binary file (3.74 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_basebackup-16.mo ADDED
Binary file (46.4 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_checksums-16.mo ADDED
Binary file (7.39 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_config-16.mo ADDED
Binary file (6.67 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_controldata-16.mo ADDED
Binary file (11.8 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_ctl-16.mo ADDED
Binary file (20.8 kB). View file
 
pgsql/share/locale/fr/LC_MESSAGES/pg_dump-16.mo ADDED
Binary file (71.5 kB). View file