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
SET search_path = functions, pg_catalog;
20

    
21
--
22
-- Name: datatype; Type: TYPE; Schema: functions; Owner: -
23
--
24

    
25
CREATE TYPE datatype AS ENUM (
26
    'str',
27
    'float'
28
);
29

    
30

    
31
--
32
-- Name: _alt(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
33
--
34

    
35
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
36
    LANGUAGE sql IMMUTABLE
37
    AS $_$
38
SELECT coalesce($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)
39
$_$;
40

    
41

    
42
--
43
-- Name: _eq(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
44
--
45

    
46
CREATE FUNCTION _eq("left" anyelement DEFAULT NULL::unknown, "right" anyelement DEFAULT NULL::unknown) RETURNS boolean
47
    LANGUAGE sql IMMUTABLE
48
    AS $_$
49
SELECT $1 = $2
50
$_$;
51

    
52

    
53
--
54
-- Name: _if(boolean, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
55
--
56

    
57
CREATE FUNCTION _if(cond boolean DEFAULT NULL::boolean, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
58
    LANGUAGE sql IMMUTABLE
59
    AS $_$
60
SELECT (CASE WHEN $1 THEN $2 ELSE $3 END)
61
$_$;
62

    
63

    
64
--
65
-- Name: _if(text, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
66
--
67

    
68
CREATE FUNCTION _if(cond text DEFAULT NULL::text, "then" anyelement DEFAULT NULL::unknown, "else" anyelement DEFAULT NULL::unknown) RETURNS anyelement
69
    LANGUAGE sql IMMUTABLE
70
    AS $_$
71
SELECT functions._if($1 != '', $2, $3)
72
$_$;
73

    
74

    
75
--
76
-- Name: _join(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
77
--
78

    
79
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
80
    LANGUAGE sql IMMUTABLE
81
    AS $_$
82
SELECT array_to_string(ARRAY[$1, $2, $3, $4, $5, $6, $7, $8, $9, $10], '; ')
83
$_$;
84

    
85

    
86
--
87
-- Name: _label(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
88
--
89

    
90
CREATE FUNCTION _label(label anyelement, value anyelement) RETURNS anyelement
91
    LANGUAGE sql IMMUTABLE
92
    AS $_$
93
SELECT coalesce($1 || ': ', '') || $2
94
$_$;
95

    
96

    
97
--
98
-- Name: _merge(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
99
--
100

    
101
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
102
    LANGUAGE sql IMMUTABLE
103
    AS $_$
104
SELECT functions.join_strs(value, '; ')
105
FROM
106
(
107
    SELECT *
108
    FROM
109
    (
110
        SELECT
111
        DISTINCT ON (value)
112
        *
113
        FROM
114
        (VALUES
115
              (1, $1)
116
            , (2, $2)
117
            , (3, $3)
118
            , (4, $4)
119
            , (5, $5)
120
            , (6, $6)
121
            , (7, $7)
122
            , (8, $8)
123
            , (9, $9)
124
            , (10, $10)
125
        )
126
        AS v (sort_order, value)
127
        WHERE value IS NOT NULL
128
    )
129
    AS v
130
    ORDER BY sort_order
131
)
132
AS v
133
$_$;
134

    
135

    
136
--
137
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: functions; Owner: -
138
--
139

    
140
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS anyelement
141
    LANGUAGE plpgsql IMMUTABLE
142
    AS $$
143
DECLARE
144
    "null" text NOT NULL := "null"; -- add NOT NULL
145
    type functions.datatype NOT NULL := type; -- add NOT NULL
146
BEGIN
147
    IF type = 'str' THEN RETURN nullif(value::text, "null");
148
    -- Invalid value is ignored, but invalid null value generates error
149
    ELSIF type = 'float' THEN
150
        DECLARE
151
            -- Outside the try block so that invalid null value generates error
152
            "null" double precision := "null"::double precision;
153
        BEGIN
154
            RETURN nullif(value::double precision, "null");
155
        EXCEPTION
156
            WHEN data_exception THEN RETURN value; -- ignore invalid value
157
        END;
158
    END IF;
159
END;
160
$$;
161

    
162

    
163
--
164
-- Name: _nullIf(anyelement, text, text); Type: FUNCTION; Schema: functions; Owner: -
165
--
166

    
167
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type text) RETURNS anyelement
168
    LANGUAGE sql IMMUTABLE
169
    AS $_$
170
SELECT functions."_nullIf"($1, $2, $3::functions.datatype)
171
$_$;
172

    
173

    
174
--
175
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: functions; Owner: -
176
--
177

    
178
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
179
    LANGUAGE sql IMMUTABLE STRICT
180
    AS $_$
181
SELECT $1 || $3 || $2
182
$_$;
183

    
184

    
185
--
186
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: functions; Owner: -
187
--
188

    
189
CREATE AGGREGATE join_strs(text, text) (
190
    SFUNC = join_strs_transform,
191
    STYPE = text
192
);
193

    
194

    
195
--
196
-- PostgreSQL database dump complete
197
--
198

    
(4-4/20)