1 |
2094
|
aaronmk
|
--
|
2 |
|
|
-- PostgreSQL database dump
|
3 |
|
|
--
|
4 |
|
|
|
5 |
|
|
SET statement_timeout = 0;
|
6 |
|
|
SET client_encoding = 'UTF8';
|
7 |
|
|
SET standard_conforming_strings = off;
|
8 |
|
|
SET check_function_bodies = false;
|
9 |
|
|
SET client_min_messages = warning;
|
10 |
|
|
SET escape_string_warning = off;
|
11 |
|
|
|
12 |
|
|
--
|
13 |
|
|
-- Name: functions; Type: SCHEMA; Schema: -; Owner: -
|
14 |
|
|
--
|
15 |
|
|
|
16 |
|
|
CREATE SCHEMA functions;
|
17 |
|
|
|
18 |
|
|
|
19 |
2107
|
aaronmk
|
SET search_path = functions, pg_catalog;
|
20 |
|
|
|
21 |
2094
|
aaronmk
|
--
|
22 |
2610
|
aaronmk
|
-- Name: datatype; Type: TYPE; Schema: functions; Owner: -
|
23 |
|
|
--
|
24 |
|
|
|
25 |
|
|
CREATE TYPE datatype AS ENUM (
|
26 |
|
|
'str',
|
27 |
|
|
'float'
|
28 |
|
|
);
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
--
|
32 |
3422
|
aaronmk
|
-- Name: _alt(text, text, text, text, text, text, text, text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
33 |
2596
|
aaronmk
|
--
|
34 |
|
|
|
35 |
3422
|
aaronmk
|
CREATE FUNCTION _alt("0" text DEFAULT NULL::text, "1" text DEFAULT NULL::text, "2" text DEFAULT NULL::text, "3" text DEFAULT NULL::text, "4" text DEFAULT NULL::text, "5" text DEFAULT NULL::text, "6" text DEFAULT NULL::text, "7" text DEFAULT NULL::text, "8" text DEFAULT NULL::text, "9" text DEFAULT NULL::text) RETURNS text
|
36 |
|
|
LANGUAGE sql IMMUTABLE
|
37 |
|
|
AS $_$
|
38 |
|
|
SELECT coalesce($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
39 |
|
|
$_$;
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
--
|
43 |
|
|
-- Name: _label(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
44 |
|
|
--
|
45 |
|
|
|
46 |
|
|
CREATE FUNCTION _label(label text, value text) RETURNS text
|
47 |
2596
|
aaronmk
|
LANGUAGE plpgsql IMMUTABLE
|
48 |
|
|
AS $$
|
49 |
3422
|
aaronmk
|
DECLARE
|
50 |
|
|
label text NOT NULL := label; -- add NOT NULL
|
51 |
2596
|
aaronmk
|
BEGIN
|
52 |
3422
|
aaronmk
|
RETURN label||': '||value;
|
53 |
2596
|
aaronmk
|
END;
|
54 |
|
|
$$;
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
--
|
58 |
2940
|
aaronmk
|
-- Name: _merge(text, text, text, text, text, text, text, text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
59 |
|
|
--
|
60 |
|
|
|
61 |
|
|
CREATE FUNCTION _merge("0" text DEFAULT NULL::text, "1" text DEFAULT NULL::text, "2" text DEFAULT NULL::text, "3" text DEFAULT NULL::text, "4" text DEFAULT NULL::text, "5" text DEFAULT NULL::text, "6" text DEFAULT NULL::text, "7" text DEFAULT NULL::text, "8" text DEFAULT NULL::text, "9" text DEFAULT NULL::text) RETURNS text
|
62 |
|
|
LANGUAGE sql IMMUTABLE
|
63 |
|
|
AS $_$
|
64 |
|
|
SELECT functions.join_strs('; ', value)
|
65 |
|
|
FROM
|
66 |
|
|
(
|
67 |
|
|
SELECT *
|
68 |
|
|
FROM
|
69 |
|
|
(
|
70 |
|
|
SELECT
|
71 |
|
|
DISTINCT ON (value)
|
72 |
|
|
*
|
73 |
|
|
FROM
|
74 |
|
|
(VALUES
|
75 |
|
|
(0, $1)
|
76 |
|
|
, (1, $2)
|
77 |
|
|
, (2, $3)
|
78 |
|
|
, (3, $4)
|
79 |
|
|
, (4, $5)
|
80 |
|
|
, (5, $6)
|
81 |
|
|
, (6, $7)
|
82 |
|
|
, (7, $8)
|
83 |
|
|
, (8, $9)
|
84 |
|
|
, (9, $10)
|
85 |
|
|
)
|
86 |
|
|
AS v (sort_order, value)
|
87 |
|
|
)
|
88 |
|
|
AS v
|
89 |
|
|
ORDER BY sort_order
|
90 |
|
|
)
|
91 |
|
|
AS v
|
92 |
|
|
$_$;
|
93 |
|
|
|
94 |
|
|
|
95 |
|
|
--
|
96 |
2949
|
aaronmk
|
-- Name: _nullIf(text, text, datatype); Type: FUNCTION; Schema: functions; Owner: -
|
97 |
|
|
--
|
98 |
|
|
|
99 |
|
|
CREATE FUNCTION "_nullIf"(value text, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS text
|
100 |
|
|
LANGUAGE plpgsql IMMUTABLE
|
101 |
|
|
AS $$
|
102 |
|
|
DECLARE
|
103 |
|
|
"null" text NOT NULL := "null"; -- add NOT NULL
|
104 |
|
|
type functions.datatype NOT NULL := type; -- add NOT NULL
|
105 |
|
|
BEGIN
|
106 |
|
|
IF type = 'str' THEN RETURN nullif(value, "null"); -- no cast needed
|
107 |
2722
|
aaronmk
|
-- Invalid value is ignored, but invalid null value generates error
|
108 |
2949
|
aaronmk
|
ELSIF type = 'float' THEN
|
109 |
2722
|
aaronmk
|
DECLARE
|
110 |
|
|
-- Outside the try block so that invalid null value generates error
|
111 |
2949
|
aaronmk
|
"null" double precision := "null"::double precision;
|
112 |
2722
|
aaronmk
|
BEGIN
|
113 |
2949
|
aaronmk
|
RETURN nullif(value::double precision, "null");
|
114 |
2722
|
aaronmk
|
EXCEPTION
|
115 |
2949
|
aaronmk
|
WHEN data_exception THEN RETURN value; -- ignore invalid value
|
116 |
2722
|
aaronmk
|
END;
|
117 |
2610
|
aaronmk
|
END IF;
|
118 |
|
|
END;
|
119 |
|
|
$$;
|
120 |
|
|
|
121 |
|
|
|
122 |
|
|
--
|
123 |
4008
|
aaronmk
|
-- Name: join_strs_transform_fold_empty(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
124 |
2595
|
aaronmk
|
--
|
125 |
|
|
|
126 |
4008
|
aaronmk
|
CREATE FUNCTION join_strs_transform_fold_empty(state text, delim text, value text) RETURNS text
|
127 |
2595
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
128 |
|
|
AS $_$
|
129 |
4009
|
aaronmk
|
SELECT functions.join_strs_transform_preserve_empty($1, $2, NULLIF($3, ''))
|
130 |
|
|
$_$;
|
131 |
|
|
|
132 |
|
|
|
133 |
|
|
--
|
134 |
|
|
-- Name: join_strs_transform_preserve_empty(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
135 |
|
|
--
|
136 |
|
|
|
137 |
|
|
CREATE FUNCTION join_strs_transform_preserve_empty(state text, delim text, value text) RETURNS text
|
138 |
|
|
LANGUAGE sql IMMUTABLE
|
139 |
|
|
AS $_$
|
140 |
4010
|
aaronmk
|
SELECT (CASE
|
141 |
|
|
WHEN $1 IS NOT NULL AND $3 IS NOT NULL
|
142 |
|
|
THEN $1 || $2 || $3
|
143 |
|
|
ELSE COALESCE($1, $3)
|
144 |
|
|
END)
|
145 |
2595
|
aaronmk
|
$_$;
|
146 |
|
|
|
147 |
|
|
|
148 |
|
|
--
|
149 |
|
|
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: functions; Owner: -
|
150 |
|
|
--
|
151 |
|
|
|
152 |
|
|
CREATE AGGREGATE join_strs(text, text) (
|
153 |
4008
|
aaronmk
|
SFUNC = join_strs_transform_fold_empty,
|
154 |
4010
|
aaronmk
|
STYPE = text
|
155 |
2595
|
aaronmk
|
);
|
156 |
|
|
|
157 |
|
|
|
158 |
2107
|
aaronmk
|
--
|
159 |
2136
|
aaronmk
|
-- PostgreSQL database dump complete
|
160 |
|
|
--
|