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 |
4053
|
aaronmk
|
SELECT functions.join_strs(value, '; ')
|
65 |
2940
|
aaronmk
|
FROM
|
66 |
|
|
(
|
67 |
|
|
SELECT *
|
68 |
|
|
FROM
|
69 |
|
|
(
|
70 |
|
|
SELECT
|
71 |
|
|
DISTINCT ON (value)
|
72 |
|
|
*
|
73 |
|
|
FROM
|
74 |
|
|
(VALUES
|
75 |
4012
|
aaronmk
|
(1, $1)
|
76 |
|
|
, (2, $2)
|
77 |
|
|
, (3, $3)
|
78 |
|
|
, (4, $4)
|
79 |
|
|
, (5, $5)
|
80 |
|
|
, (6, $6)
|
81 |
|
|
, (7, $7)
|
82 |
|
|
, (8, $8)
|
83 |
|
|
, (9, $9)
|
84 |
|
|
, (10, $10)
|
85 |
2940
|
aaronmk
|
)
|
86 |
|
|
AS v (sort_order, value)
|
87 |
4011
|
aaronmk
|
WHERE value IS NOT NULL
|
88 |
2940
|
aaronmk
|
)
|
89 |
|
|
AS v
|
90 |
|
|
ORDER BY sort_order
|
91 |
|
|
)
|
92 |
|
|
AS v
|
93 |
|
|
$_$;
|
94 |
|
|
|
95 |
|
|
|
96 |
|
|
--
|
97 |
2949
|
aaronmk
|
-- Name: _nullIf(text, text, datatype); Type: FUNCTION; Schema: functions; Owner: -
|
98 |
|
|
--
|
99 |
|
|
|
100 |
|
|
CREATE FUNCTION "_nullIf"(value text, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS text
|
101 |
|
|
LANGUAGE plpgsql IMMUTABLE
|
102 |
|
|
AS $$
|
103 |
|
|
DECLARE
|
104 |
|
|
"null" text NOT NULL := "null"; -- add NOT NULL
|
105 |
|
|
type functions.datatype NOT NULL := type; -- add NOT NULL
|
106 |
|
|
BEGIN
|
107 |
|
|
IF type = 'str' THEN RETURN nullif(value, "null"); -- no cast needed
|
108 |
2722
|
aaronmk
|
-- Invalid value is ignored, but invalid null value generates error
|
109 |
2949
|
aaronmk
|
ELSIF type = 'float' THEN
|
110 |
2722
|
aaronmk
|
DECLARE
|
111 |
|
|
-- Outside the try block so that invalid null value generates error
|
112 |
2949
|
aaronmk
|
"null" double precision := "null"::double precision;
|
113 |
2722
|
aaronmk
|
BEGIN
|
114 |
2949
|
aaronmk
|
RETURN nullif(value::double precision, "null");
|
115 |
2722
|
aaronmk
|
EXCEPTION
|
116 |
2949
|
aaronmk
|
WHEN data_exception THEN RETURN value; -- ignore invalid value
|
117 |
2722
|
aaronmk
|
END;
|
118 |
2610
|
aaronmk
|
END IF;
|
119 |
|
|
END;
|
120 |
|
|
$$;
|
121 |
|
|
|
122 |
|
|
|
123 |
|
|
--
|
124 |
4052
|
aaronmk
|
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
125 |
4009
|
aaronmk
|
--
|
126 |
|
|
|
127 |
4053
|
aaronmk
|
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
|
128 |
4054
|
aaronmk
|
LANGUAGE sql IMMUTABLE STRICT
|
129 |
4009
|
aaronmk
|
AS $_$
|
130 |
4054
|
aaronmk
|
SELECT $1 || $3 || $2
|
131 |
2595
|
aaronmk
|
$_$;
|
132 |
|
|
|
133 |
|
|
|
134 |
|
|
--
|
135 |
|
|
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: functions; Owner: -
|
136 |
|
|
--
|
137 |
|
|
|
138 |
|
|
CREATE AGGREGATE join_strs(text, text) (
|
139 |
4052
|
aaronmk
|
SFUNC = join_strs_transform,
|
140 |
4010
|
aaronmk
|
STYPE = text
|
141 |
2595
|
aaronmk
|
);
|
142 |
|
|
|
143 |
|
|
|
144 |
2107
|
aaronmk
|
--
|
145 |
2136
|
aaronmk
|
-- PostgreSQL database dump complete
|
146 |
|
|
--
|