1 |
2094
|
aaronmk
|
--
|
2 |
|
|
-- PostgreSQL database dump
|
3 |
|
|
--
|
4 |
|
|
|
5 |
|
|
SET statement_timeout = 0;
|
6 |
|
|
SET client_encoding = 'UTF8';
|
7 |
6213
|
aaronmk
|
SET standard_conforming_strings = on;
|
8 |
2094
|
aaronmk
|
SET check_function_bodies = false;
|
9 |
|
|
SET client_min_messages = warning;
|
10 |
|
|
|
11 |
|
|
--
|
12 |
|
|
-- Name: functions; Type: SCHEMA; Schema: -; Owner: -
|
13 |
|
|
--
|
14 |
|
|
|
15 |
|
|
CREATE SCHEMA functions;
|
16 |
|
|
|
17 |
|
|
|
18 |
4982
|
aaronmk
|
--
|
19 |
|
|
-- Name: SCHEMA functions; Type: COMMENT; Schema: -; Owner: -
|
20 |
|
|
--
|
21 |
|
|
|
22 |
|
|
COMMENT ON SCHEMA functions IS 'IMPORTANT: Functions must always return NULL in place of '''' (the empty string). This ensures that empty strings do not find their way into VegBIEN.';
|
23 |
|
|
|
24 |
|
|
|
25 |
2107
|
aaronmk
|
SET search_path = functions, pg_catalog;
|
26 |
|
|
|
27 |
2094
|
aaronmk
|
--
|
28 |
8107
|
aaronmk
|
-- Name: col_cast; Type: TYPE; Schema: functions; Owner: -
|
29 |
|
|
--
|
30 |
|
|
|
31 |
|
|
CREATE TYPE col_cast AS (
|
32 |
|
|
col_name text,
|
33 |
|
|
type regtype
|
34 |
|
|
);
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
--
|
38 |
8106
|
aaronmk
|
-- Name: col_ref; Type: TYPE; Schema: functions; Owner: -
|
39 |
|
|
--
|
40 |
|
|
|
41 |
|
|
CREATE TYPE col_ref AS (
|
42 |
|
|
table_ regclass,
|
43 |
|
|
name text
|
44 |
|
|
);
|
45 |
|
|
|
46 |
|
|
|
47 |
|
|
--
|
48 |
7673
|
aaronmk
|
-- Name: compass_dir; Type: TYPE; Schema: functions; Owner: -
|
49 |
|
|
--
|
50 |
|
|
|
51 |
|
|
CREATE TYPE compass_dir AS ENUM (
|
52 |
|
|
'N',
|
53 |
|
|
'E',
|
54 |
|
|
'S',
|
55 |
|
|
'W'
|
56 |
|
|
);
|
57 |
|
|
|
58 |
|
|
|
59 |
|
|
--
|
60 |
2610
|
aaronmk
|
-- Name: datatype; Type: TYPE; Schema: functions; Owner: -
|
61 |
|
|
--
|
62 |
|
|
|
63 |
|
|
CREATE TYPE datatype AS ENUM (
|
64 |
|
|
'str',
|
65 |
|
|
'float'
|
66 |
|
|
);
|
67 |
|
|
|
68 |
|
|
|
69 |
|
|
--
|
70 |
4501
|
aaronmk
|
-- Name: _alt(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
71 |
2596
|
aaronmk
|
--
|
72 |
|
|
|
73 |
4501
|
aaronmk
|
CREATE FUNCTION _alt("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown, "10" anyelement DEFAULT NULL::unknown, "11" anyelement DEFAULT NULL::unknown, "12" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
74 |
3422
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
75 |
|
|
AS $_$
|
76 |
4501
|
aaronmk
|
SELECT coalesce($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)
|
77 |
3422
|
aaronmk
|
$_$;
|
78 |
|
|
|
79 |
|
|
|
80 |
|
|
--
|
81 |
5956
|
aaronmk
|
-- Name: _and(boolean, boolean, boolean, boolean, boolean); Type: FUNCTION; Schema: functions; Owner: -
|
82 |
5937
|
aaronmk
|
--
|
83 |
|
|
|
84 |
5956
|
aaronmk
|
CREATE FUNCTION _and("0" boolean DEFAULT NULL::boolean, "1" boolean DEFAULT NULL::boolean, "2" boolean DEFAULT NULL::boolean, "3" boolean DEFAULT NULL::boolean, "4" boolean DEFAULT NULL::boolean) RETURNS boolean
|
85 |
5937
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
86 |
|
|
AS $_$
|
87 |
|
|
SELECT bool_and(value)
|
88 |
|
|
FROM
|
89 |
|
|
(VALUES
|
90 |
|
|
($1)
|
91 |
|
|
, ($2)
|
92 |
5956
|
aaronmk
|
, ($3)
|
93 |
|
|
, ($4)
|
94 |
|
|
, ($5)
|
95 |
5937
|
aaronmk
|
)
|
96 |
|
|
AS v (value)
|
97 |
|
|
$_$;
|
98 |
|
|
|
99 |
|
|
|
100 |
|
|
--
|
101 |
5956
|
aaronmk
|
-- Name: FUNCTION _and("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean); Type: COMMENT; Schema: functions; Owner: -
|
102 |
5937
|
aaronmk
|
--
|
103 |
|
|
|
104 |
6437
|
aaronmk
|
COMMENT ON FUNCTION _and("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean) IS '_and() ignores NULL values, while AND combines them with the other values to potentially convert true to NULL. AND should be used with required fields, and _and() with optional fields.';
|
105 |
5937
|
aaronmk
|
|
106 |
|
|
|
107 |
|
|
--
|
108 |
7704
|
aaronmk
|
-- Name: _avg(double precision, double precision, double precision, double precision, double precision); Type: FUNCTION; Schema: functions; Owner: -
|
109 |
|
|
--
|
110 |
|
|
|
111 |
|
|
CREATE FUNCTION _avg("0" double precision DEFAULT NULL::double precision, "1" double precision DEFAULT NULL::double precision, "2" double precision DEFAULT NULL::double precision, "3" double precision DEFAULT NULL::double precision, "4" double precision DEFAULT NULL::double precision) RETURNS double precision
|
112 |
|
|
LANGUAGE sql IMMUTABLE
|
113 |
|
|
AS $_$
|
114 |
|
|
SELECT avg(value)
|
115 |
|
|
FROM
|
116 |
|
|
(VALUES
|
117 |
|
|
($1)
|
118 |
|
|
, ($2)
|
119 |
|
|
, ($3)
|
120 |
|
|
, ($4)
|
121 |
|
|
, ($5)
|
122 |
|
|
)
|
123 |
|
|
AS v (value)
|
124 |
|
|
$_$;
|
125 |
|
|
|
126 |
|
|
|
127 |
|
|
--
|
128 |
7679
|
aaronmk
|
-- Name: _dms_to_dd(text); Type: FUNCTION; Schema: functions; Owner: -
|
129 |
|
|
--
|
130 |
|
|
|
131 |
|
|
CREATE FUNCTION _dms_to_dd(value text DEFAULT NULL::text) RETURNS double precision
|
132 |
|
|
LANGUAGE sql IMMUTABLE STRICT
|
133 |
|
|
AS $_$
|
134 |
|
|
SELECT (g[1]||'1')::integer*functions._dms_to_dd(deg := g[2]::double precision, min := g[3]::double precision, sec := g[4]::double precision, dir := g[5]::functions.compass_dir)
|
135 |
7698
|
aaronmk
|
FROM
|
136 |
|
|
(
|
137 |
|
|
SELECT regexp_matches($1, '^ *(-?)(\d{1,3}(?:\.\d*)?)(?:(?:deg|[°º])(?: *([\d.]+)(?:min|[''’]))?(?: *([\d.]+)(?:sec|["”]))?)? *([NESW])? *$')
|
138 |
|
|
UNION ALL
|
139 |
7702
|
aaronmk
|
SELECT ARRAY[g[1], g[2], g[3]||'.'||g[4], NULL, g[5]]
|
140 |
|
|
FROM regexp_matches($1, '^ *(-?)(\d{2,3})(\d{2})(\d{3}) *([NESW])? *$') matches (g) -- [D]DDMMmmm, where MMmmm = MM.mmm
|
141 |
7698
|
aaronmk
|
)
|
142 |
|
|
matches (g)
|
143 |
7679
|
aaronmk
|
$_$;
|
144 |
|
|
|
145 |
|
|
|
146 |
|
|
--
|
147 |
7674
|
aaronmk
|
-- Name: _dms_to_dd(double precision, double precision, double precision, compass_dir); Type: FUNCTION; Schema: functions; Owner: -
|
148 |
7672
|
aaronmk
|
--
|
149 |
|
|
|
150 |
7674
|
aaronmk
|
CREATE FUNCTION _dms_to_dd(deg double precision DEFAULT NULL::double precision, min double precision DEFAULT NULL::double precision, sec double precision DEFAULT NULL::double precision, dir compass_dir DEFAULT NULL::compass_dir) RETURNS double precision
|
151 |
7672
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
152 |
|
|
AS $_$
|
153 |
7678
|
aaronmk
|
SELECT sum(value)*COALESCE(functions._map('N=>1,E=>1,S=>-1,W=>-1', $4::text)::integer, 1)
|
154 |
7672
|
aaronmk
|
FROM
|
155 |
|
|
(VALUES
|
156 |
7677
|
aaronmk
|
($1)
|
157 |
7672
|
aaronmk
|
, ($2/60)
|
158 |
|
|
, ($3/60/60)
|
159 |
|
|
)
|
160 |
|
|
AS v (value)
|
161 |
|
|
$_$;
|
162 |
|
|
|
163 |
|
|
|
164 |
|
|
--
|
165 |
7723
|
aaronmk
|
-- Name: _dms_to_dd(text, text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
166 |
|
|
--
|
167 |
|
|
|
168 |
|
|
CREATE FUNCTION _dms_to_dd(deg text DEFAULT NULL::text, min text DEFAULT NULL::text, sec text DEFAULT NULL::text, dir text DEFAULT NULL::text) RETURNS double precision
|
169 |
|
|
LANGUAGE sql IMMUTABLE
|
170 |
|
|
AS $_$
|
171 |
|
|
SELECT functions._dms_to_dd($1::double precision, $2::double precision, $3::double precision, $4::functions.compass_dir)
|
172 |
|
|
$_$;
|
173 |
|
|
|
174 |
|
|
|
175 |
|
|
--
|
176 |
4142
|
aaronmk
|
-- Name: _eq(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
177 |
|
|
--
|
178 |
|
|
|
179 |
|
|
CREATE FUNCTION _eq("left" anyelement DEFAULT NULL::unknown, "right" anyelement DEFAULT NULL::unknown) RETURNS boolean
|
180 |
|
|
LANGUAGE sql IMMUTABLE
|
181 |
|
|
AS $_$
|
182 |
|
|
SELECT $1 = $2
|
183 |
|
|
$_$;
|
184 |
|
|
|
185 |
|
|
|
186 |
|
|
--
|
187 |
7396
|
aaronmk
|
-- Name: _fix_date(date, date); Type: FUNCTION; Schema: functions; Owner: -
|
188 |
|
|
--
|
189 |
|
|
|
190 |
|
|
CREATE FUNCTION _fix_date(value date DEFAULT NULL::date, threshold date DEFAULT NULL::date) RETURNS date
|
191 |
|
|
LANGUAGE sql IMMUTABLE
|
192 |
|
|
AS $_$
|
193 |
|
|
-- Fix dates after threshold date
|
194 |
|
|
-- This fixes e.g. 2-digit years before 1970 misinterpreted as 20xx
|
195 |
|
|
SELECT (CASE WHEN $1 > COALESCE($2, now()) THEN ($1 - '100 years'::interval)::date ELSE $1 END)
|
196 |
|
|
$_$;
|
197 |
|
|
|
198 |
|
|
|
199 |
|
|
--
|
200 |
4147
|
aaronmk
|
-- Name: _if(boolean, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
201 |
|
|
--
|
202 |
|
|
|
203 |
|
|
CREATE FUNCTION _if(cond boolean DEFAULT NULL::boolean, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
204 |
|
|
LANGUAGE sql IMMUTABLE
|
205 |
|
|
AS $_$
|
206 |
|
|
SELECT (CASE WHEN $1 THEN $2 ELSE $3 END)
|
207 |
|
|
$_$;
|
208 |
|
|
|
209 |
|
|
|
210 |
|
|
--
|
211 |
|
|
-- Name: _if(text, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
212 |
|
|
--
|
213 |
|
|
|
214 |
|
|
CREATE FUNCTION _if(cond text DEFAULT NULL::text, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
215 |
|
|
LANGUAGE sql IMMUTABLE
|
216 |
|
|
AS $_$
|
217 |
|
|
SELECT functions._if($1 != '', $2, $3)
|
218 |
|
|
$_$;
|
219 |
|
|
|
220 |
|
|
|
221 |
|
|
--
|
222 |
4325
|
aaronmk
|
-- Name: _join(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
223 |
|
|
--
|
224 |
|
|
|
225 |
|
|
CREATE FUNCTION _join("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
226 |
|
|
LANGUAGE sql IMMUTABLE
|
227 |
|
|
AS $_$
|
228 |
7848
|
aaronmk
|
SELECT NULLIF(concat_ws('; ', $1, $2, $3, $4, $5, $6, $7, $8, $9, $10), '')
|
229 |
4325
|
aaronmk
|
$_$;
|
230 |
|
|
|
231 |
|
|
|
232 |
|
|
--
|
233 |
5009
|
aaronmk
|
-- Name: _join_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
234 |
|
|
--
|
235 |
|
|
|
236 |
|
|
CREATE FUNCTION _join_words("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
237 |
|
|
LANGUAGE sql IMMUTABLE
|
238 |
|
|
AS $_$
|
239 |
7848
|
aaronmk
|
SELECT NULLIF(concat_ws(' ', $1, $2, $3, $4, $5, $6, $7, $8, $9, $10), '')
|
240 |
5009
|
aaronmk
|
$_$;
|
241 |
|
|
|
242 |
|
|
|
243 |
|
|
--
|
244 |
4683
|
aaronmk
|
-- Name: _label(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
245 |
3422
|
aaronmk
|
--
|
246 |
|
|
|
247 |
4683
|
aaronmk
|
CREATE FUNCTION _label(label anyelement, value anyelement) RETURNS anyelement
|
248 |
4682
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
249 |
|
|
AS $_$
|
250 |
|
|
SELECT coalesce($1 || ': ', '') || $2
|
251 |
|
|
$_$;
|
252 |
2596
|
aaronmk
|
|
253 |
|
|
|
254 |
|
|
--
|
255 |
6222
|
aaronmk
|
-- Name: _map(hstore, text); Type: FUNCTION; Schema: functions; Owner: -
|
256 |
|
|
--
|
257 |
|
|
|
258 |
|
|
CREATE FUNCTION _map(map hstore, value text) RETURNS text
|
259 |
7820
|
aaronmk
|
LANGUAGE plpgsql IMMUTABLE STRICT
|
260 |
6222
|
aaronmk
|
AS $$
|
261 |
|
|
DECLARE
|
262 |
6271
|
aaronmk
|
match text := map -> value;
|
263 |
6222
|
aaronmk
|
BEGIN
|
264 |
6271
|
aaronmk
|
IF match IS NULL AND NOT map ? value THEN -- no match rather than NULL match
|
265 |
|
|
match := map -> '*'; -- use default entry
|
266 |
|
|
IF match IS NULL AND NOT map ? '*' THEN match := '!'; -- no default
|
267 |
|
|
END IF;
|
268 |
|
|
END IF;
|
269 |
|
|
|
270 |
|
|
-- Interpret result
|
271 |
6243
|
aaronmk
|
IF match = '!' THEN RAISE 'Value not in map: %', value USING ERRCODE = 'data_exception';
|
272 |
|
|
ELSIF match = '*' THEN RETURN value;
|
273 |
|
|
ELSE RETURN match;
|
274 |
6222
|
aaronmk
|
END IF;
|
275 |
|
|
END;
|
276 |
|
|
$$;
|
277 |
|
|
|
278 |
|
|
|
279 |
|
|
--
|
280 |
5408
|
aaronmk
|
-- Name: _max(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
281 |
|
|
--
|
282 |
|
|
|
283 |
|
|
CREATE FUNCTION _max("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
284 |
|
|
LANGUAGE sql IMMUTABLE
|
285 |
|
|
AS $_$
|
286 |
7289
|
aaronmk
|
SELECT GREATEST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
287 |
5408
|
aaronmk
|
$_$;
|
288 |
|
|
|
289 |
|
|
|
290 |
|
|
--
|
291 |
4150
|
aaronmk
|
-- Name: _merge(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
292 |
2940
|
aaronmk
|
--
|
293 |
|
|
|
294 |
4150
|
aaronmk
|
CREATE FUNCTION _merge("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
295 |
2940
|
aaronmk
|
LANGUAGE sql IMMUTABLE
|
296 |
|
|
AS $_$
|
297 |
4053
|
aaronmk
|
SELECT functions.join_strs(value, '; ')
|
298 |
2940
|
aaronmk
|
FROM
|
299 |
|
|
(
|
300 |
|
|
SELECT *
|
301 |
|
|
FROM
|
302 |
|
|
(
|
303 |
|
|
SELECT
|
304 |
|
|
DISTINCT ON (value)
|
305 |
|
|
*
|
306 |
|
|
FROM
|
307 |
|
|
(VALUES
|
308 |
4012
|
aaronmk
|
(1, $1)
|
309 |
|
|
, (2, $2)
|
310 |
|
|
, (3, $3)
|
311 |
|
|
, (4, $4)
|
312 |
|
|
, (5, $5)
|
313 |
|
|
, (6, $6)
|
314 |
|
|
, (7, $7)
|
315 |
|
|
, (8, $8)
|
316 |
|
|
, (9, $9)
|
317 |
|
|
, (10, $10)
|
318 |
2940
|
aaronmk
|
)
|
319 |
|
|
AS v (sort_order, value)
|
320 |
4011
|
aaronmk
|
WHERE value IS NOT NULL
|
321 |
2940
|
aaronmk
|
)
|
322 |
|
|
AS v
|
323 |
|
|
ORDER BY sort_order
|
324 |
|
|
)
|
325 |
|
|
AS v
|
326 |
|
|
$_$;
|
327 |
|
|
|
328 |
|
|
|
329 |
|
|
--
|
330 |
7140
|
aaronmk
|
-- Name: _merge_prefix(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
331 |
|
|
--
|
332 |
|
|
|
333 |
|
|
CREATE FUNCTION _merge_prefix(prefix text DEFAULT NULL::text, value text DEFAULT NULL::text) RETURNS text
|
334 |
|
|
LANGUAGE sql IMMUTABLE
|
335 |
|
|
AS $_$
|
336 |
|
|
SELECT _join_words((CASE WHEN $2 ~ ('^'||$1||E'\\y') THEN NULL ELSE $1 END), $2)
|
337 |
|
|
$_$;
|
338 |
|
|
|
339 |
|
|
|
340 |
|
|
--
|
341 |
6354
|
aaronmk
|
-- Name: _merge_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
342 |
|
|
--
|
343 |
|
|
|
344 |
|
|
CREATE FUNCTION _merge_words("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
345 |
|
|
LANGUAGE sql IMMUTABLE
|
346 |
|
|
AS $_$
|
347 |
|
|
SELECT functions.join_strs(value, ' ')
|
348 |
|
|
FROM
|
349 |
|
|
(
|
350 |
|
|
SELECT *
|
351 |
|
|
FROM
|
352 |
|
|
(
|
353 |
|
|
SELECT
|
354 |
|
|
DISTINCT ON (value)
|
355 |
|
|
*
|
356 |
|
|
FROM
|
357 |
|
|
(VALUES
|
358 |
|
|
(1, $1)
|
359 |
|
|
, (2, $2)
|
360 |
|
|
, (3, $3)
|
361 |
|
|
, (4, $4)
|
362 |
|
|
, (5, $5)
|
363 |
|
|
, (6, $6)
|
364 |
|
|
, (7, $7)
|
365 |
|
|
, (8, $8)
|
366 |
|
|
, (9, $9)
|
367 |
|
|
, (10, $10)
|
368 |
|
|
)
|
369 |
|
|
AS v (sort_order, value)
|
370 |
|
|
WHERE value IS NOT NULL
|
371 |
|
|
)
|
372 |
|
|
AS v
|
373 |
|
|
ORDER BY sort_order
|
374 |
|
|
)
|
375 |
|
|
AS v
|
376 |
|
|
$_$;
|
377 |
|
|
|
378 |
|
|
|
379 |
|
|
--
|
380 |
5408
|
aaronmk
|
-- Name: _min(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
|
381 |
|
|
--
|
382 |
|
|
|
383 |
|
|
CREATE FUNCTION _min("0" anyelement DEFAULT NULL::unknown, "1" anyelement DEFAULT NULL::unknown, "2" anyelement DEFAULT NULL::unknown, "3" anyelement DEFAULT NULL::unknown, "4" anyelement DEFAULT NULL::unknown, "5" anyelement DEFAULT NULL::unknown, "6" anyelement DEFAULT NULL::unknown, "7" anyelement DEFAULT NULL::unknown, "8" anyelement DEFAULT NULL::unknown, "9" anyelement DEFAULT NULL::unknown) RETURNS anyelement
|
384 |
|
|
LANGUAGE sql IMMUTABLE
|
385 |
|
|
AS $_$
|
386 |
7289
|
aaronmk
|
SELECT LEAST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
387 |
5408
|
aaronmk
|
$_$;
|
388 |
|
|
|
389 |
|
|
|
390 |
|
|
--
|
391 |
6316
|
aaronmk
|
-- Name: _not(boolean); Type: FUNCTION; Schema: functions; Owner: -
|
392 |
|
|
--
|
393 |
|
|
|
394 |
|
|
CREATE FUNCTION _not(value boolean) RETURNS boolean
|
395 |
|
|
LANGUAGE sql IMMUTABLE STRICT
|
396 |
|
|
AS $_$
|
397 |
|
|
SELECT NOT $1
|
398 |
|
|
$_$;
|
399 |
|
|
|
400 |
|
|
|
401 |
|
|
--
|
402 |
7104
|
aaronmk
|
-- Name: _now(); Type: FUNCTION; Schema: functions; Owner: -
|
403 |
|
|
--
|
404 |
|
|
|
405 |
|
|
CREATE FUNCTION _now() RETURNS timestamp with time zone
|
406 |
|
|
LANGUAGE sql STABLE
|
407 |
|
|
AS $$
|
408 |
|
|
SELECT now()
|
409 |
|
|
$$;
|
410 |
|
|
|
411 |
|
|
|
412 |
|
|
--
|
413 |
4475
|
aaronmk
|
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: functions; Owner: -
|
414 |
2949
|
aaronmk
|
--
|
415 |
|
|
|
416 |
4475
|
aaronmk
|
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS anyelement
|
417 |
2949
|
aaronmk
|
LANGUAGE plpgsql IMMUTABLE
|
418 |
|
|
AS $$
|
419 |
|
|
DECLARE
|
420 |
|
|
type functions.datatype NOT NULL := type; -- add NOT NULL
|
421 |
|
|
BEGIN
|
422 |
4475
|
aaronmk
|
IF type = 'str' THEN RETURN nullif(value::text, "null");
|
423 |
2722
|
aaronmk
|
-- Invalid value is ignored, but invalid null value generates error
|
424 |
2949
|
aaronmk
|
ELSIF type = 'float' THEN
|
425 |
2722
|
aaronmk
|
DECLARE
|
426 |
|
|
-- Outside the try block so that invalid null value generates error
|
427 |
2949
|
aaronmk
|
"null" double precision := "null"::double precision;
|
428 |
2722
|
aaronmk
|
BEGIN
|
429 |
2949
|
aaronmk
|
RETURN nullif(value::double precision, "null");
|
430 |
2722
|
aaronmk
|
EXCEPTION
|
431 |
2949
|
aaronmk
|
WHEN data_exception THEN RETURN value; -- ignore invalid value
|
432 |
2722
|
aaronmk
|
END;
|
433 |
2610
|
aaronmk
|
END IF;
|
434 |
|
|
END;
|
435 |
|
|
$$;
|
436 |
|
|
|
437 |
|
|
|
438 |
|
|
--
|
439 |
4479
|
aaronmk
|
-- Name: _nullIf(anyelement, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
440 |
|
|
--
|
441 |
|
|
|
442 |
|
|
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type text) RETURNS anyelement
|
443 |
|
|
LANGUAGE sql IMMUTABLE
|
444 |
|
|
AS $_$
|
445 |
|
|
SELECT functions."_nullIf"($1, $2, $3::functions.datatype)
|
446 |
|
|
$_$;
|
447 |
|
|
|
448 |
|
|
|
449 |
|
|
--
|
450 |
6355
|
aaronmk
|
-- Name: _or(boolean, boolean, boolean, boolean, boolean); Type: FUNCTION; Schema: functions; Owner: -
|
451 |
|
|
--
|
452 |
|
|
|
453 |
|
|
CREATE FUNCTION _or("0" boolean DEFAULT NULL::boolean, "1" boolean DEFAULT NULL::boolean, "2" boolean DEFAULT NULL::boolean, "3" boolean DEFAULT NULL::boolean, "4" boolean DEFAULT NULL::boolean) RETURNS boolean
|
454 |
|
|
LANGUAGE sql IMMUTABLE
|
455 |
|
|
AS $_$
|
456 |
|
|
SELECT bool_or(value)
|
457 |
|
|
FROM
|
458 |
|
|
(VALUES
|
459 |
|
|
($1)
|
460 |
|
|
, ($2)
|
461 |
|
|
, ($3)
|
462 |
|
|
, ($4)
|
463 |
|
|
, ($5)
|
464 |
|
|
)
|
465 |
|
|
AS v (value)
|
466 |
|
|
$_$;
|
467 |
|
|
|
468 |
|
|
|
469 |
|
|
--
|
470 |
6437
|
aaronmk
|
-- Name: FUNCTION _or("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean); Type: COMMENT; Schema: functions; Owner: -
|
471 |
|
|
--
|
472 |
|
|
|
473 |
|
|
COMMENT ON FUNCTION _or("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean) IS '_or() ignores NULL values, while OR combines them with the other values to potentially convert false to NULL. OR should be used with required fields, and _or() with optional fields.';
|
474 |
|
|
|
475 |
|
|
|
476 |
|
|
--
|
477 |
7706
|
aaronmk
|
-- Name: _range(double precision, double precision); Type: FUNCTION; Schema: functions; Owner: -
|
478 |
|
|
--
|
479 |
|
|
|
480 |
|
|
CREATE FUNCTION _range("from" double precision DEFAULT NULL::double precision, "to" double precision DEFAULT NULL::double precision) RETURNS double precision
|
481 |
|
|
LANGUAGE sql IMMUTABLE
|
482 |
|
|
AS $_$
|
483 |
|
|
SELECT $2 - $1
|
484 |
|
|
$_$;
|
485 |
|
|
|
486 |
|
|
|
487 |
|
|
--
|
488 |
6793
|
aaronmk
|
-- Name: _split(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
489 |
|
|
--
|
490 |
|
|
|
491 |
|
|
CREATE FUNCTION _split(value text DEFAULT NULL::text, separator text DEFAULT '; '::text) RETURNS SETOF text
|
492 |
|
|
LANGUAGE sql IMMUTABLE STRICT
|
493 |
|
|
AS $_$
|
494 |
|
|
SELECT regexp_split_to_table($1, $2)
|
495 |
|
|
$_$;
|
496 |
|
|
|
497 |
|
|
|
498 |
|
|
--
|
499 |
8104
|
aaronmk
|
-- Name: cluster_index(regclass); Type: FUNCTION; Schema: functions; Owner: -
|
500 |
|
|
--
|
501 |
|
|
|
502 |
|
|
CREATE FUNCTION cluster_index(table_ regclass) RETURNS regclass
|
503 |
|
|
LANGUAGE sql STABLE STRICT
|
504 |
|
|
AS $_$
|
505 |
|
|
SELECT indexrelid FROM pg_index WHERE indrelid = $1 AND indisclustered
|
506 |
|
|
$_$;
|
507 |
|
|
|
508 |
|
|
|
509 |
|
|
--
|
510 |
8105
|
aaronmk
|
-- Name: cluster_once(regclass, regclass); Type: FUNCTION; Schema: functions; Owner: -
|
511 |
|
|
--
|
512 |
|
|
|
513 |
|
|
CREATE FUNCTION cluster_once(table_ regclass, index regclass) RETURNS void
|
514 |
|
|
LANGUAGE plpgsql STRICT
|
515 |
|
|
AS $_$
|
516 |
|
|
BEGIN
|
517 |
|
|
-- not yet clustered (ARRAY[] compares NULLs literally)
|
518 |
|
|
IF ARRAY[functions.cluster_index(table_)] != ARRAY[index] THEN
|
519 |
|
|
EXECUTE $$CLUSTER $$||table_||$$ USING $$||index;
|
520 |
|
|
END IF;
|
521 |
|
|
END;
|
522 |
|
|
$_$;
|
523 |
|
|
|
524 |
|
|
|
525 |
|
|
--
|
526 |
|
|
-- Name: FUNCTION cluster_once(table_ regclass, index regclass); Type: COMMENT; Schema: functions; Owner: -
|
527 |
|
|
--
|
528 |
|
|
|
529 |
|
|
COMMENT ON FUNCTION cluster_once(table_ regclass, index regclass) IS 'idempotent';
|
530 |
|
|
|
531 |
|
|
|
532 |
|
|
--
|
533 |
8084
|
aaronmk
|
-- Name: col_global_names(regtype); Type: FUNCTION; Schema: functions; Owner: -
|
534 |
|
|
--
|
535 |
|
|
|
536 |
|
|
CREATE FUNCTION col_global_names(type regtype, OUT name text, OUT global_name text) RETURNS SETOF record
|
537 |
8097
|
aaronmk
|
LANGUAGE plpgsql STABLE STRICT
|
538 |
8084
|
aaronmk
|
AS $$
|
539 |
|
|
DECLARE
|
540 |
|
|
prefix text := functions.name(type)||'.';
|
541 |
|
|
BEGIN
|
542 |
|
|
RETURN QUERY
|
543 |
8096
|
aaronmk
|
SELECT name_, (CASE WHEN functions.contains(search_for:='.', in_str:=name_) THEN '' ELSE prefix END)||name_
|
544 |
8087
|
aaronmk
|
FROM functions.col_names(type) f (name_);
|
545 |
8084
|
aaronmk
|
END;
|
546 |
|
|
$$;
|
547 |
|
|
|
548 |
|
|
|
549 |
|
|
--
|
550 |
8082
|
aaronmk
|
-- Name: col_names(regtype); Type: FUNCTION; Schema: functions; Owner: -
|
551 |
|
|
--
|
552 |
|
|
|
553 |
|
|
CREATE FUNCTION col_names(type regtype) RETURNS SETOF text
|
554 |
8097
|
aaronmk
|
LANGUAGE plpgsql STABLE STRICT
|
555 |
8082
|
aaronmk
|
AS $_$
|
556 |
|
|
BEGIN
|
557 |
|
|
RETURN QUERY EXECUTE $$SELECT skeys(hstore(NULL::$$||type||$$))$$;
|
558 |
|
|
END;
|
559 |
|
|
$_$;
|
560 |
|
|
|
561 |
|
|
|
562 |
|
|
--
|
563 |
8106
|
aaronmk
|
-- Name: col_type(col_ref); Type: FUNCTION; Schema: functions; Owner: -
|
564 |
|
|
--
|
565 |
|
|
|
566 |
|
|
CREATE FUNCTION col_type(col col_ref) RETURNS regtype
|
567 |
|
|
LANGUAGE sql STABLE STRICT
|
568 |
|
|
AS $_$
|
569 |
|
|
SELECT atttypid FROM pg_attribute
|
570 |
|
|
WHERE attrelid = $1.table_ AND attname = $1.name
|
571 |
|
|
$_$;
|
572 |
|
|
|
573 |
|
|
|
574 |
|
|
--
|
575 |
8095
|
aaronmk
|
-- Name: contains(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
576 |
|
|
--
|
577 |
|
|
|
578 |
|
|
CREATE FUNCTION contains(search_for text, in_str text) RETURNS boolean
|
579 |
|
|
LANGUAGE sql IMMUTABLE STRICT
|
580 |
|
|
AS $_$
|
581 |
|
|
SELECT position($1 in $2) > 0 /*1-based offset*/
|
582 |
|
|
$_$;
|
583 |
|
|
|
584 |
|
|
|
585 |
|
|
--
|
586 |
8094
|
aaronmk
|
-- Name: create_if_not_exists(text); Type: FUNCTION; Schema: functions; Owner: -
|
587 |
|
|
--
|
588 |
|
|
|
589 |
|
|
CREATE FUNCTION create_if_not_exists(sql text) RETURNS void
|
590 |
|
|
LANGUAGE plpgsql STRICT
|
591 |
|
|
AS $$
|
592 |
|
|
BEGIN
|
593 |
|
|
EXECUTE sql;
|
594 |
|
|
EXCEPTION
|
595 |
8103
|
aaronmk
|
WHEN duplicate_table THEN NULL;
|
596 |
|
|
WHEN duplicate_column THEN NULL;
|
597 |
8094
|
aaronmk
|
END;
|
598 |
|
|
$$;
|
599 |
|
|
|
600 |
|
|
|
601 |
|
|
--
|
602 |
|
|
-- Name: FUNCTION create_if_not_exists(sql text); Type: COMMENT; Schema: functions; Owner: -
|
603 |
|
|
--
|
604 |
|
|
|
605 |
|
|
COMMENT ON FUNCTION create_if_not_exists(sql text) IS 'idempotent';
|
606 |
|
|
|
607 |
|
|
|
608 |
|
|
--
|
609 |
8086
|
aaronmk
|
-- Name: ensure_prefix(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
610 |
|
|
--
|
611 |
|
|
|
612 |
|
|
CREATE FUNCTION ensure_prefix(prefix text, str text) RETURNS text
|
613 |
8097
|
aaronmk
|
LANGUAGE sql STABLE STRICT
|
614 |
8086
|
aaronmk
|
AS $_$
|
615 |
|
|
SELECT (CASE WHEN functions.has_prefix($1, $2) THEN $2 ELSE $1||$2 END)
|
616 |
|
|
$_$;
|
617 |
|
|
|
618 |
|
|
|
619 |
|
|
--
|
620 |
8085
|
aaronmk
|
-- Name: has_prefix(text, text); Type: FUNCTION; Schema: functions; Owner: -
|
621 |
|
|
--
|
622 |
|
|
|
623 |
|
|
CREATE FUNCTION has_prefix(prefix text, str text) RETURNS boolean
|
624 |
|
|
LANGUAGE sql IMMUTABLE STRICT
|
625 |
|
|
AS $_$
|
626 |
|
|
SELECT substring($2 for length($1)) = $1
|
627 |
|
|
$_$;
|
628 |
|
|
|
629 |
|
|
|
630 |
|
|
--
|
631 |
4052
|
aaronmk
|
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
|
632 |
4009
|
aaronmk
|
--
|
633 |
|
|
|
634 |
4053
|
aaronmk
|
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
|
635 |
4054
|
aaronmk
|
LANGUAGE sql IMMUTABLE STRICT
|
636 |
4009
|
aaronmk
|
AS $_$
|
637 |
4054
|
aaronmk
|
SELECT $1 || $3 || $2
|
638 |
2595
|
aaronmk
|
$_$;
|
639 |
|
|
|
640 |
|
|
|
641 |
|
|
--
|
642 |
8083
|
aaronmk
|
-- Name: name(regtype); Type: FUNCTION; Schema: functions; Owner: -
|
643 |
|
|
--
|
644 |
|
|
|
645 |
|
|
CREATE FUNCTION name(type regtype) RETURNS text
|
646 |
8097
|
aaronmk
|
LANGUAGE sql STABLE STRICT
|
647 |
8083
|
aaronmk
|
AS $_$
|
648 |
|
|
SELECT typname::text FROM pg_type WHERE oid = $1
|
649 |
|
|
$_$;
|
650 |
|
|
|
651 |
|
|
|
652 |
|
|
--
|
653 |
8102
|
aaronmk
|
-- Name: rename_if_exists(text); Type: FUNCTION; Schema: functions; Owner: -
|
654 |
|
|
--
|
655 |
|
|
|
656 |
|
|
CREATE FUNCTION rename_if_exists(sql text) RETURNS void
|
657 |
|
|
LANGUAGE plpgsql STRICT
|
658 |
|
|
AS $$
|
659 |
|
|
BEGIN
|
660 |
|
|
EXECUTE sql;
|
661 |
|
|
EXCEPTION
|
662 |
|
|
WHEN undefined_column THEN NULL;
|
663 |
|
|
END;
|
664 |
|
|
$$;
|
665 |
|
|
|
666 |
|
|
|
667 |
|
|
--
|
668 |
|
|
-- Name: FUNCTION rename_if_exists(sql text); Type: COMMENT; Schema: functions; Owner: -
|
669 |
|
|
--
|
670 |
|
|
|
671 |
|
|
COMMENT ON FUNCTION rename_if_exists(sql text) IS 'idempotent';
|
672 |
|
|
|
673 |
|
|
|
674 |
|
|
--
|
675 |
8107
|
aaronmk
|
-- Name: set_col_types(regclass, col_cast[]); Type: FUNCTION; Schema: functions; Owner: -
|
676 |
|
|
--
|
677 |
|
|
|
678 |
|
|
CREATE FUNCTION set_col_types(table_ regclass, col_casts col_cast[]) RETURNS void
|
679 |
|
|
LANGUAGE plpgsql STRICT
|
680 |
|
|
AS $_$
|
681 |
|
|
DECLARE
|
682 |
|
|
sql text = $$ALTER TABLE $$||table_||$$
|
683 |
|
|
$$||NULLIF(array_to_string(ARRAY(
|
684 |
|
|
SELECT
|
685 |
|
|
$$ALTER COLUMN $$||col_name_sql||$$ TYPE $$||target_type
|
686 |
|
|
||$$ USING $$||col_name_sql||$$::$$||target_type
|
687 |
|
|
FROM
|
688 |
|
|
(
|
689 |
|
|
SELECT
|
690 |
|
|
quote_ident(col_name) AS col_name_sql
|
691 |
|
|
, functions.col_type((table_, col_name)) AS curr_type
|
692 |
|
|
, type AS target_type
|
693 |
|
|
FROM unnest(col_casts)
|
694 |
|
|
) s
|
695 |
|
|
WHERE curr_type != target_type
|
696 |
|
|
), '
|
697 |
|
|
, '), '');
|
698 |
|
|
BEGIN
|
699 |
|
|
RAISE NOTICE '%', sql;
|
700 |
|
|
EXECUTE COALESCE(sql, '');
|
701 |
|
|
END;
|
702 |
|
|
$_$;
|
703 |
|
|
|
704 |
|
|
|
705 |
|
|
--
|
706 |
|
|
-- Name: FUNCTION set_col_types(table_ regclass, col_casts col_cast[]); Type: COMMENT; Schema: functions; Owner: -
|
707 |
|
|
--
|
708 |
|
|
|
709 |
|
|
COMMENT ON FUNCTION set_col_types(table_ regclass, col_casts col_cast[]) IS 'idempotent';
|
710 |
|
|
|
711 |
|
|
|
712 |
|
|
--
|
713 |
8088
|
aaronmk
|
-- Name: to_global_col_names(regclass); Type: FUNCTION; Schema: functions; Owner: -
|
714 |
|
|
--
|
715 |
|
|
|
716 |
|
|
CREATE FUNCTION to_global_col_names(table_ regclass) RETURNS void
|
717 |
|
|
LANGUAGE plpgsql STRICT
|
718 |
|
|
AS $_$
|
719 |
|
|
DECLARE
|
720 |
|
|
row record;
|
721 |
|
|
BEGIN
|
722 |
|
|
FOR row IN SELECT * FROM functions.col_global_names(table_::text::regtype)
|
723 |
|
|
LOOP
|
724 |
|
|
IF row.global_name != row.name THEN
|
725 |
|
|
EXECUTE $$ALTER TABLE $$||table_||$$ RENAME $$
|
726 |
|
|
||quote_ident(row.name)||$$ TO $$||quote_ident(row.global_name);
|
727 |
|
|
END IF;
|
728 |
|
|
END LOOP;
|
729 |
|
|
END;
|
730 |
|
|
$_$;
|
731 |
|
|
|
732 |
|
|
|
733 |
|
|
--
|
734 |
|
|
-- Name: FUNCTION to_global_col_names(table_ regclass); Type: COMMENT; Schema: functions; Owner: -
|
735 |
|
|
--
|
736 |
|
|
|
737 |
|
|
COMMENT ON FUNCTION to_global_col_names(table_ regclass) IS 'idempotent';
|
738 |
|
|
|
739 |
|
|
|
740 |
|
|
--
|
741 |
2595
|
aaronmk
|
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: functions; Owner: -
|
742 |
|
|
--
|
743 |
|
|
|
744 |
|
|
CREATE AGGREGATE join_strs(text, text) (
|
745 |
4052
|
aaronmk
|
SFUNC = join_strs_transform,
|
746 |
4010
|
aaronmk
|
STYPE = text
|
747 |
2595
|
aaronmk
|
);
|
748 |
|
|
|
749 |
|
|
|
750 |
2107
|
aaronmk
|
--
|
751 |
2136
|
aaronmk
|
-- PostgreSQL database dump complete
|
752 |
|
|
--
|