Project

General

Profile

1
--
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
--
20
-- Name: SCHEMA functions; Type: COMMENT; Schema: -; Owner: -
21
--
22

    
23
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.';
24

    
25

    
26
SET search_path = functions, pg_catalog;
27

    
28
--
29
-- Name: datatype; Type: TYPE; Schema: functions; Owner: -
30
--
31

    
32
CREATE TYPE datatype AS ENUM (
33
    'str',
34
    'float'
35
);
36

    
37

    
38
--
39
-- Name: _alt(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
40
--
41

    
42
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
43
    LANGUAGE sql IMMUTABLE
44
    AS $_$
45
SELECT coalesce($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)
46
$_$;
47

    
48

    
49
--
50
-- Name: _cm_to_m(double precision); Type: FUNCTION; Schema: functions; Owner: -
51
--
52

    
53
CREATE FUNCTION _cm_to_m(value double precision) RETURNS double precision
54
    LANGUAGE sql IMMUTABLE STRICT
55
    AS $_$
56
SELECT $1/100.
57
$_$;
58

    
59

    
60
--
61
-- Name: _eq(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
62
--
63

    
64
CREATE FUNCTION _eq("left" anyelement DEFAULT NULL::unknown, "right" anyelement DEFAULT NULL::unknown) RETURNS boolean
65
    LANGUAGE sql IMMUTABLE
66
    AS $_$
67
SELECT $1 = $2
68
$_$;
69

    
70

    
71
--
72
-- Name: _fraction_to_percent(double precision); Type: FUNCTION; Schema: functions; Owner: -
73
--
74

    
75
CREATE FUNCTION _fraction_to_percent(value double precision) RETURNS double precision
76
    LANGUAGE sql IMMUTABLE STRICT
77
    AS $_$
78
SELECT $1*100.
79
$_$;
80

    
81

    
82
--
83
-- Name: _ft_to_m(double precision); Type: FUNCTION; Schema: functions; Owner: -
84
--
85

    
86
CREATE FUNCTION _ft_to_m(value double precision) RETURNS double precision
87
    LANGUAGE sql IMMUTABLE STRICT
88
    AS $_$
89
SELECT functions._in_to_m($1*12)
90
$_$;
91

    
92

    
93
--
94
-- Name: _ha_to_m2(double precision); Type: FUNCTION; Schema: functions; Owner: -
95
--
96

    
97
CREATE FUNCTION _ha_to_m2(value double precision) RETURNS double precision
98
    LANGUAGE sql IMMUTABLE STRICT
99
    AS $_$
100
SELECT $1*10000.
101
$_$;
102

    
103

    
104
--
105
-- Name: _if(boolean, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
106
--
107

    
108
CREATE FUNCTION _if(cond boolean DEFAULT NULL::boolean, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
109
    LANGUAGE sql IMMUTABLE
110
    AS $_$
111
SELECT (CASE WHEN $1 THEN $2 ELSE $3 END)
112
$_$;
113

    
114

    
115
--
116
-- Name: _if(text, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
117
--
118

    
119
CREATE FUNCTION _if(cond text DEFAULT NULL::text, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
120
    LANGUAGE sql IMMUTABLE
121
    AS $_$
122
SELECT functions._if($1 != '', $2, $3)
123
$_$;
124

    
125

    
126
--
127
-- Name: _in_to_m(double precision); Type: FUNCTION; Schema: functions; Owner: -
128
--
129

    
130
CREATE FUNCTION _in_to_m(value double precision) RETURNS double precision
131
    LANGUAGE sql IMMUTABLE STRICT
132
    AS $_$
133
SELECT $1*2.54/100.
134
$_$;
135

    
136

    
137
--
138
-- Name: _join(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
139
--
140

    
141
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
142
    LANGUAGE sql IMMUTABLE
143
    AS $_$
144
SELECT nullif(array_to_string(ARRAY[$1, $2, $3, $4, $5, $6, $7, $8, $9, $10], '; '), '')
145
$_$;
146

    
147

    
148
--
149
-- Name: _join_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
150
--
151

    
152
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
153
    LANGUAGE sql IMMUTABLE
154
    AS $_$
155
SELECT nullif(array_to_string(ARRAY[$1, $2, $3, $4, $5, $6, $7, $8, $9, $10], ' '), '')
156
$_$;
157

    
158

    
159
--
160
-- Name: _label(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
161
--
162

    
163
CREATE FUNCTION _label(label anyelement, value anyelement) RETURNS anyelement
164
    LANGUAGE sql IMMUTABLE
165
    AS $_$
166
SELECT coalesce($1 || ': ', '') || $2
167
$_$;
168

    
169

    
170
--
171
-- Name: _m2_to_ha(double precision); Type: FUNCTION; Schema: functions; Owner: -
172
--
173

    
174
CREATE FUNCTION _m2_to_ha(value double precision) RETURNS double precision
175
    LANGUAGE sql IMMUTABLE STRICT
176
    AS $_$
177
SELECT $1/10000.
178
$_$;
179

    
180

    
181
--
182
-- Name: _max(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
183
--
184

    
185
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
186
    LANGUAGE sql IMMUTABLE
187
    AS $_$
188
SELECT max(value)
189
FROM
190
(VALUES
191
      ($1)
192
    , ($2)
193
    , ($3)
194
    , ($4)
195
    , ($5)
196
    , ($6)
197
    , ($7)
198
    , ($8)
199
    , ($9)
200
    , ($10)
201
)
202
AS v (value)
203
$_$;
204

    
205

    
206
--
207
-- Name: _merge(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
208
--
209

    
210
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
211
    LANGUAGE sql IMMUTABLE
212
    AS $_$
213
SELECT functions.join_strs(value, '; ')
214
FROM
215
(
216
    SELECT *
217
    FROM
218
    (
219
        SELECT
220
        DISTINCT ON (value)
221
        *
222
        FROM
223
        (VALUES
224
              (1, $1)
225
            , (2, $2)
226
            , (3, $3)
227
            , (4, $4)
228
            , (5, $5)
229
            , (6, $6)
230
            , (7, $7)
231
            , (8, $8)
232
            , (9, $9)
233
            , (10, $10)
234
        )
235
        AS v (sort_order, value)
236
        WHERE value IS NOT NULL
237
    )
238
    AS v
239
    ORDER BY sort_order
240
)
241
AS v
242
$_$;
243

    
244

    
245
--
246
-- Name: _min(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
247
--
248

    
249
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
250
    LANGUAGE sql IMMUTABLE
251
    AS $_$
252
SELECT min(value)
253
FROM
254
(VALUES
255
      ($1)
256
    , ($2)
257
    , ($3)
258
    , ($4)
259
    , ($5)
260
    , ($6)
261
    , ($7)
262
    , ($8)
263
    , ($9)
264
    , ($10)
265
)
266
AS v (value)
267
$_$;
268

    
269

    
270
--
271
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: functions; Owner: -
272
--
273

    
274
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS anyelement
275
    LANGUAGE plpgsql IMMUTABLE
276
    AS $$
277
DECLARE
278
    "null" text NOT NULL := "null"; -- add NOT NULL
279
    type functions.datatype NOT NULL := type; -- add NOT NULL
280
BEGIN
281
    IF type = 'str' THEN RETURN nullif(value::text, "null");
282
    -- Invalid value is ignored, but invalid null value generates error
283
    ELSIF type = 'float' THEN
284
        DECLARE
285
            -- Outside the try block so that invalid null value generates error
286
            "null" double precision := "null"::double precision;
287
        BEGIN
288
            RETURN nullif(value::double precision, "null");
289
        EXCEPTION
290
            WHEN data_exception THEN RETURN value; -- ignore invalid value
291
        END;
292
    END IF;
293
END;
294
$$;
295

    
296

    
297
--
298
-- Name: _nullIf(anyelement, text, text); Type: FUNCTION; Schema: functions; Owner: -
299
--
300

    
301
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type text) RETURNS anyelement
302
    LANGUAGE sql IMMUTABLE
303
    AS $_$
304
SELECT functions."_nullIf"($1, $2, $3::functions.datatype)
305
$_$;
306

    
307

    
308
--
309
-- Name: _percent_to_fraction(double precision); Type: FUNCTION; Schema: functions; Owner: -
310
--
311

    
312
CREATE FUNCTION _percent_to_fraction(value double precision) RETURNS double precision
313
    LANGUAGE sql IMMUTABLE STRICT
314
    AS $_$
315
SELECT $1/100.
316
$_$;
317

    
318

    
319
--
320
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
321
--
322

    
323
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
324
    LANGUAGE sql IMMUTABLE STRICT
325
    AS $_$
326
SELECT $1 || $3 || $2
327
$_$;
328

    
329

    
330
--
331
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: functions; Owner: -
332
--
333

    
334
CREATE AGGREGATE join_strs(text, text) (
335
    SFUNC = join_strs_transform,
336
    STYPE = text
337
);
338

    
339

    
340
--
341
-- PostgreSQL database dump complete
342
--
343

    
(4-4/20)