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 = on;
8
SET check_function_bodies = false;
9
SET client_min_messages = warning;
10

    
11
--
12
-- Name: util; Type: SCHEMA; Schema: -; Owner: -
13
--
14

    
15
CREATE SCHEMA util;
16

    
17

    
18
--
19
-- Name: SCHEMA util; Type: COMMENT; Schema: -; Owner: -
20
--
21

    
22
COMMENT ON SCHEMA util 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
SET search_path = util, pg_catalog;
26

    
27
--
28
-- Name: col_cast; Type: TYPE; Schema: util; Owner: -
29
--
30

    
31
CREATE TYPE col_cast AS (
32
	col_name text,
33
	type regtype
34
);
35

    
36

    
37
--
38
-- Name: col_ref; Type: TYPE; Schema: util; Owner: -
39
--
40

    
41
CREATE TYPE col_ref AS (
42
	table_ regclass,
43
	name text
44
);
45

    
46

    
47
--
48
-- Name: compass_dir; Type: TYPE; Schema: util; Owner: -
49
--
50

    
51
CREATE TYPE compass_dir AS ENUM (
52
    'N',
53
    'E',
54
    'S',
55
    'W'
56
);
57

    
58

    
59
--
60
-- Name: datatype; Type: TYPE; Schema: util; Owner: -
61
--
62

    
63
CREATE TYPE datatype AS ENUM (
64
    'str',
65
    'float'
66
);
67

    
68

    
69
--
70
-- Name: _alt(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
71
--
72

    
73
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
    LANGUAGE sql IMMUTABLE
75
    AS $_$
76
SELECT coalesce($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)
77
$_$;
78

    
79

    
80
--
81
-- Name: _and(boolean, boolean, boolean, boolean, boolean); Type: FUNCTION; Schema: util; Owner: -
82
--
83

    
84
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
    LANGUAGE sql IMMUTABLE
86
    AS $_$
87
SELECT bool_and(value)
88
FROM
89
(VALUES
90
      ($1)
91
    , ($2)
92
    , ($3)
93
    , ($4)
94
    , ($5)
95
)
96
AS v (value)
97
$_$;
98

    
99

    
100
--
101
-- Name: FUNCTION _and("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean); Type: COMMENT; Schema: util; Owner: -
102
--
103

    
104
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

    
106

    
107
--
108
-- Name: _avg(double precision, double precision, double precision, double precision, double precision); Type: FUNCTION; Schema: util; 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
-- Name: _dms_to_dd(text); Type: FUNCTION; Schema: util; 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*util._dms_to_dd(deg := g[2]::double precision, min := g[3]::double precision, sec := g[4]::double precision, dir := g[5]::util.compass_dir)
135
FROM 
136
(
137
    SELECT regexp_matches($1, '^ *(-?)(\d{1,3}(?:\.\d*)?)(?:(?:deg|[°º])(?: *([\d.]+)(?:min|[''’]))?(?: *([\d.]+)(?:sec|["”]))?)? *([NESW])? *$')
138
    UNION ALL
139
    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
)
142
matches (g)
143
$_$;
144

    
145

    
146
--
147
-- Name: _dms_to_dd(double precision, double precision, double precision, compass_dir); Type: FUNCTION; Schema: util; Owner: -
148
--
149

    
150
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
    LANGUAGE sql IMMUTABLE
152
    AS $_$
153
SELECT sum(value)*COALESCE(util._map('N=>1,E=>1,S=>-1,W=>-1', $4::text)::integer, 1)
154
FROM
155
(VALUES
156
      ($1)
157
    , ($2/60)
158
    , ($3/60/60)
159
)
160
AS v (value)
161
$_$;
162

    
163

    
164
--
165
-- Name: _dms_to_dd(text, text, text, text); Type: FUNCTION; Schema: util; 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 util._dms_to_dd($1::double precision, $2::double precision, $3::double precision, $4::util.compass_dir)
172
$_$;
173

    
174

    
175
--
176
-- Name: _eq(anyelement, anyelement); Type: FUNCTION; Schema: util; 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
-- Name: _fix_date(date, date); Type: FUNCTION; Schema: util; 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
-- Name: _if(boolean, anyelement, anyelement); Type: FUNCTION; Schema: util; 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: util; 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 util._if($1 != '', $2, $3)
218
$_$;
219

    
220

    
221
--
222
-- Name: _join(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; 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
SELECT NULLIF(concat_ws('; ', $1, $2, $3, $4, $5, $6, $7, $8, $9, $10), '')
229
$_$;
230

    
231

    
232
--
233
-- Name: _join_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; 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
SELECT NULLIF(concat_ws(' ', $1, $2, $3, $4, $5, $6, $7, $8, $9, $10), '')
240
$_$;
241

    
242

    
243
--
244
-- Name: _label(anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
245
--
246

    
247
CREATE FUNCTION _label(label anyelement, value anyelement) RETURNS anyelement
248
    LANGUAGE sql IMMUTABLE
249
    AS $_$
250
SELECT coalesce($1 || ': ', '') || $2
251
$_$;
252

    
253

    
254
--
255
-- Name: _lowercase(text); Type: FUNCTION; Schema: util; Owner: -
256
--
257

    
258
CREATE FUNCTION _lowercase(value text) RETURNS text
259
    LANGUAGE sql IMMUTABLE STRICT
260
    AS $_$
261
SELECT lower($1)
262
$_$;
263

    
264

    
265
--
266
-- Name: _map(hstore, text); Type: FUNCTION; Schema: util; Owner: -
267
--
268

    
269
CREATE FUNCTION _map(map hstore, value text) RETURNS text
270
    LANGUAGE plpgsql IMMUTABLE STRICT
271
    AS $$
272
DECLARE
273
    match text := map -> value;
274
BEGIN
275
    IF match IS NULL AND NOT map ? value THEN -- no match rather than NULL match
276
        match := map -> '*'; -- use default entry
277
        IF match IS NULL AND NOT map ? '*' THEN match := '!'; -- no default
278
        END IF;
279
    END IF;
280
    
281
    -- Interpret result
282
    IF match = '!' THEN RAISE 'Value not in map: %', value USING ERRCODE = 'data_exception';
283
    ELSIF match = '*' THEN RETURN value;
284
    ELSE RETURN match;
285
    END IF;
286
END;
287
$$;
288

    
289

    
290
--
291
-- Name: _max(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
292
--
293

    
294
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
295
    LANGUAGE sql IMMUTABLE
296
    AS $_$
297
SELECT GREATEST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
298
$_$;
299

    
300

    
301
--
302
-- Name: _merge(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
303
--
304

    
305
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
306
    LANGUAGE sql IMMUTABLE
307
    AS $_$
308
SELECT util.join_strs(value, '; ')
309
FROM
310
(
311
    SELECT *
312
    FROM
313
    (
314
        SELECT
315
        DISTINCT ON (value)
316
        *
317
        FROM
318
        (VALUES
319
              (1, $1)
320
            , (2, $2)
321
            , (3, $3)
322
            , (4, $4)
323
            , (5, $5)
324
            , (6, $6)
325
            , (7, $7)
326
            , (8, $8)
327
            , (9, $9)
328
            , (10, $10)
329
        )
330
        AS v (sort_order, value)
331
        WHERE value IS NOT NULL
332
    )
333
    AS v
334
    ORDER BY sort_order
335
)
336
AS v
337
$_$;
338

    
339

    
340
--
341
-- Name: _merge_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
342
--
343

    
344
CREATE FUNCTION _merge_prefix(prefix text DEFAULT NULL::text, value text DEFAULT NULL::text) RETURNS text
345
    LANGUAGE sql IMMUTABLE
346
    AS $_$
347
SELECT _join_words((CASE WHEN $2 ~ ('^'||$1||E'\\y') THEN NULL ELSE $1 END), $2)
348
$_$;
349

    
350

    
351
--
352
-- Name: _merge_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
353
--
354

    
355
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
356
    LANGUAGE sql IMMUTABLE
357
    AS $_$
358
SELECT util.join_strs(value, ' ')
359
FROM
360
(
361
    SELECT *
362
    FROM
363
    (
364
        SELECT
365
        DISTINCT ON (value)
366
        *
367
        FROM
368
        (VALUES
369
              (1, $1)
370
            , (2, $2)
371
            , (3, $3)
372
            , (4, $4)
373
            , (5, $5)
374
            , (6, $6)
375
            , (7, $7)
376
            , (8, $8)
377
            , (9, $9)
378
            , (10, $10)
379
        )
380
        AS v (sort_order, value)
381
        WHERE value IS NOT NULL
382
    )
383
    AS v
384
    ORDER BY sort_order
385
)
386
AS v
387
$_$;
388

    
389

    
390
--
391
-- Name: _min(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
392
--
393

    
394
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
395
    LANGUAGE sql IMMUTABLE
396
    AS $_$
397
SELECT LEAST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
398
$_$;
399

    
400

    
401
--
402
-- Name: _not(boolean); Type: FUNCTION; Schema: util; Owner: -
403
--
404

    
405
CREATE FUNCTION _not(value boolean) RETURNS boolean
406
    LANGUAGE sql IMMUTABLE STRICT
407
    AS $_$
408
SELECT NOT $1
409
$_$;
410

    
411

    
412
--
413
-- Name: _now(); Type: FUNCTION; Schema: util; Owner: -
414
--
415

    
416
CREATE FUNCTION _now() RETURNS timestamp with time zone
417
    LANGUAGE sql STABLE
418
    AS $$
419
SELECT now()
420
$$;
421

    
422

    
423
--
424
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: util; Owner: -
425
--
426

    
427
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS anyelement
428
    LANGUAGE plpgsql IMMUTABLE
429
    AS $$
430
DECLARE
431
    type util.datatype NOT NULL := type; -- add NOT NULL
432
BEGIN
433
    IF type = 'str' THEN RETURN nullif(value::text, "null");
434
    -- Invalid value is ignored, but invalid null value generates error
435
    ELSIF type = 'float' THEN
436
        DECLARE
437
            -- Outside the try block so that invalid null value generates error
438
            "null" double precision := "null"::double precision;
439
        BEGIN
440
            RETURN nullif(value::double precision, "null");
441
        EXCEPTION
442
            WHEN data_exception THEN RETURN value; -- ignore invalid value
443
        END;
444
    END IF;
445
END;
446
$$;
447

    
448

    
449
--
450
-- Name: _nullIf(anyelement, text, text); Type: FUNCTION; Schema: util; Owner: -
451
--
452

    
453
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type text) RETURNS anyelement
454
    LANGUAGE sql IMMUTABLE
455
    AS $_$
456
SELECT util."_nullIf"($1, $2, $3::util.datatype)
457
$_$;
458

    
459

    
460
--
461
-- Name: _or(boolean, boolean, boolean, boolean, boolean); Type: FUNCTION; Schema: util; Owner: -
462
--
463

    
464
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
465
    LANGUAGE sql IMMUTABLE
466
    AS $_$
467
SELECT bool_or(value)
468
FROM
469
(VALUES
470
      ($1)
471
    , ($2)
472
    , ($3)
473
    , ($4)
474
    , ($5)
475
)
476
AS v (value)
477
$_$;
478

    
479

    
480
--
481
-- Name: FUNCTION _or("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean); Type: COMMENT; Schema: util; Owner: -
482
--
483

    
484
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.';
485

    
486

    
487
--
488
-- Name: _range(double precision, double precision); Type: FUNCTION; Schema: util; Owner: -
489
--
490

    
491
CREATE FUNCTION _range("from" double precision DEFAULT NULL::double precision, "to" double precision DEFAULT NULL::double precision) RETURNS double precision
492
    LANGUAGE sql IMMUTABLE
493
    AS $_$
494
SELECT $2 - $1
495
$_$;
496

    
497

    
498
--
499
-- Name: _split(text, text); Type: FUNCTION; Schema: util; Owner: -
500
--
501

    
502
CREATE FUNCTION _split(value text DEFAULT NULL::text, separator text DEFAULT '; '::text) RETURNS SETOF text
503
    LANGUAGE sql IMMUTABLE STRICT
504
    AS $_$
505
SELECT regexp_split_to_table($1, $2)
506
$_$;
507

    
508

    
509
--
510
-- Name: cluster_index(regclass); Type: FUNCTION; Schema: util; Owner: -
511
--
512

    
513
CREATE FUNCTION cluster_index(table_ regclass) RETURNS regclass
514
    LANGUAGE sql STABLE STRICT
515
    AS $_$
516
SELECT indexrelid FROM pg_index WHERE indrelid = $1 AND indisclustered
517
$_$;
518

    
519

    
520
--
521
-- Name: cluster_once(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
522
--
523

    
524
CREATE FUNCTION cluster_once(table_ regclass, index regclass) RETURNS void
525
    LANGUAGE plpgsql STRICT
526
    AS $_$
527
BEGIN
528
    -- not yet clustered (ARRAY[] compares NULLs literally)
529
    IF ARRAY[util.cluster_index(table_)] != ARRAY[index] THEN
530
        EXECUTE $$CLUSTER $$||table_||$$ USING $$||index;
531
    END IF;
532
END;
533
$_$;
534

    
535

    
536
--
537
-- Name: FUNCTION cluster_once(table_ regclass, index regclass); Type: COMMENT; Schema: util; Owner: -
538
--
539

    
540
COMMENT ON FUNCTION cluster_once(table_ regclass, index regclass) IS 'idempotent';
541

    
542

    
543
--
544
-- Name: col_exists(col_ref); Type: FUNCTION; Schema: util; Owner: -
545
--
546

    
547
CREATE FUNCTION col_exists(col col_ref) RETURNS boolean
548
    LANGUAGE plpgsql STRICT
549
    AS $$
550
BEGIN
551
    PERFORM util.col_type(col);
552
    RETURN true;
553
EXCEPTION
554
    WHEN undefined_column THEN RETURN false;
555
END;
556
$$;
557

    
558

    
559
--
560
-- Name: col_global_names(regtype); Type: FUNCTION; Schema: util; Owner: -
561
--
562

    
563
CREATE FUNCTION col_global_names(type regtype, OUT name text, OUT global_name text) RETURNS SETOF record
564
    LANGUAGE plpgsql STABLE STRICT
565
    AS $$
566
DECLARE
567
    prefix text := util.name(type)||'.';
568
BEGIN
569
    RETURN QUERY
570
        SELECT name_, (CASE WHEN util.contains(search_for:='.', in_str:=name_) THEN '' ELSE prefix END)||name_
571
        FROM util.col_names(type) f (name_);
572
END;
573
$$;
574

    
575

    
576
--
577
-- Name: col_names(regtype); Type: FUNCTION; Schema: util; Owner: -
578
--
579

    
580
CREATE FUNCTION col_names(type regtype) RETURNS SETOF text
581
    LANGUAGE plpgsql STABLE STRICT
582
    AS $_$
583
BEGIN
584
    RETURN QUERY EXECUTE $$SELECT skeys(hstore(NULL::$$||type||$$))$$;
585
END;
586
$_$;
587

    
588

    
589
--
590
-- Name: col_names(regclass); Type: FUNCTION; Schema: util; Owner: -
591
--
592

    
593
CREATE FUNCTION col_names(table_ regclass) RETURNS SETOF text
594
    LANGUAGE sql STABLE STRICT
595
    AS $_$
596
SELECT attname::text
597
FROM pg_attribute
598
WHERE attrelid = $1 AND attnum >= 1
599
ORDER BY attnum
600
$_$;
601

    
602

    
603
--
604
-- Name: col_type(col_ref); Type: FUNCTION; Schema: util; Owner: -
605
--
606

    
607
CREATE FUNCTION col_type(col col_ref) RETURNS regtype
608
    LANGUAGE plpgsql STABLE STRICT
609
    AS $$
610
DECLARE
611
    type regtype;
612
BEGIN
613
    SELECT atttypid FROM pg_attribute
614
    WHERE attrelid = col.table_ AND attname = col.name
615
    INTO STRICT type
616
    ;
617
    RETURN type;
618
EXCEPTION
619
    WHEN no_data_found THEN
620
        RAISE undefined_column USING MESSAGE =
621
            concat('undefined column: ', col.name);
622
END;
623
$$;
624

    
625

    
626
--
627
-- Name: contains(text, text); Type: FUNCTION; Schema: util; Owner: -
628
--
629

    
630
CREATE FUNCTION contains(search_for text, in_str text) RETURNS boolean
631
    LANGUAGE sql IMMUTABLE STRICT
632
    AS $_$
633
SELECT position($1 in $2) > 0 /*1-based offset*/
634
$_$;
635

    
636

    
637
--
638
-- Name: create_if_not_exists(text); Type: FUNCTION; Schema: util; Owner: -
639
--
640

    
641
CREATE FUNCTION create_if_not_exists(sql text) RETURNS void
642
    LANGUAGE plpgsql STRICT
643
    AS $$
644
BEGIN
645
    EXECUTE sql;
646
EXCEPTION
647
    WHEN duplicate_table  THEN NULL;
648
    WHEN duplicate_column THEN NULL;
649
END;
650
$$;
651

    
652

    
653
--
654
-- Name: FUNCTION create_if_not_exists(sql text); Type: COMMENT; Schema: util; Owner: -
655
--
656

    
657
COMMENT ON FUNCTION create_if_not_exists(sql text) IS 'idempotent';
658

    
659

    
660
--
661
-- Name: do_optionally_ignore(text, boolean); Type: FUNCTION; Schema: util; Owner: -
662
--
663

    
664
CREATE FUNCTION do_optionally_ignore(sql text, ignore boolean) RETURNS void
665
    LANGUAGE sql STRICT
666
    AS $_$
667
SELECT CASE WHEN $2 THEN util.try_create($1) ELSE util.create_if_not_exists($1) END
668
$_$;
669

    
670

    
671
--
672
-- Name: FUNCTION do_optionally_ignore(sql text, ignore boolean); Type: COMMENT; Schema: util; Owner: -
673
--
674

    
675
COMMENT ON FUNCTION do_optionally_ignore(sql text, ignore boolean) IS 'idempotent';
676

    
677

    
678
--
679
-- Name: ensure_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
680
--
681

    
682
CREATE FUNCTION ensure_prefix(prefix text, str text) RETURNS text
683
    LANGUAGE sql IMMUTABLE STRICT
684
    AS $_$
685
SELECT (CASE WHEN util.has_prefix($1, $2) THEN $2 ELSE $1||$2 END)
686
$_$;
687

    
688

    
689
--
690
-- Name: existing_cols(regclass, text[]); Type: FUNCTION; Schema: util; Owner: -
691
--
692

    
693
CREATE FUNCTION existing_cols(table_ regclass, VARIADIC col_names text[]) RETURNS SETOF text
694
    LANGUAGE sql STABLE STRICT
695
    AS $_$
696
SELECT col_name
697
FROM unnest($2) s (col_name)
698
WHERE util.col_exists(($1, col_name))
699
$_$;
700

    
701

    
702
--
703
-- Name: force_update_view(text, text); Type: FUNCTION; Schema: util; Owner: -
704
--
705

    
706
CREATE FUNCTION force_update_view(view_ text, query text) RETURNS void
707
    LANGUAGE plpgsql STRICT
708
    AS $_$
709
DECLARE
710
	mk_view text = $$CREATE OR REPLACE VIEW $$||view_||$$ AS
711
$$||query;
712
BEGIN
713
	EXECUTE mk_view;
714
EXCEPTION
715
WHEN invalid_table_definition THEN
716
	IF SQLERRM = 'cannot drop columns from view'
717
	OR SQLERRM LIKE 'cannot change name of view column "%" to "%"'
718
	THEN
719
		EXECUTE $$DROP VIEW $$||view_||$$ CASCADE$$;
720
		EXECUTE mk_view;
721
	ELSE RAISE USING ERRCODE = SQLSTATE, MESSAGE = SQLERRM;
722
	END IF;
723
END;
724
$_$;
725

    
726

    
727
--
728
-- Name: FUNCTION force_update_view(view_ text, query text); Type: COMMENT; Schema: util; Owner: -
729
--
730

    
731
COMMENT ON FUNCTION force_update_view(view_ text, query text) IS 'idempotent';
732

    
733

    
734
--
735
-- Name: has_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
736
--
737

    
738
CREATE FUNCTION has_prefix(prefix text, str text) RETURNS boolean
739
    LANGUAGE sql IMMUTABLE STRICT
740
    AS $_$
741
SELECT substring($2 for length($1)) = $1
742
$_$;
743

    
744

    
745
--
746
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: util; Owner: -
747
--
748

    
749
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
750
    LANGUAGE sql IMMUTABLE STRICT
751
    AS $_$
752
SELECT $1 || $3 || $2
753
$_$;
754

    
755

    
756
--
757
-- Name: map_get(regclass, text); Type: FUNCTION; Schema: util; Owner: -
758
--
759

    
760
CREATE FUNCTION map_get(map regclass, key text) RETURNS text
761
    LANGUAGE plpgsql STABLE STRICT
762
    AS $_$
763
DECLARE
764
    value text;
765
BEGIN
766
    EXECUTE $$SELECT "to" FROM $$||map||$$ WHERE "from" = $1$$
767
        INTO value USING key;
768
    RETURN value;
769
END;
770
$_$;
771

    
772

    
773
--
774
-- Name: map_values(regclass); Type: FUNCTION; Schema: util; Owner: -
775
--
776

    
777
CREATE FUNCTION map_values(map regclass) RETURNS SETOF text
778
    LANGUAGE plpgsql STABLE STRICT
779
    AS $_$
780
BEGIN
781
    RETURN QUERY EXECUTE $$SELECT "to" FROM $$||map;
782
END;
783
$_$;
784

    
785

    
786
--
787
-- Name: mk_const_col(col_ref, anyelement); Type: FUNCTION; Schema: util; Owner: -
788
--
789

    
790
CREATE FUNCTION mk_const_col(col col_ref, value anyelement) RETURNS void
791
    LANGUAGE sql STRICT
792
    AS $_$
793
SELECT util.create_if_not_exists($$ALTER TABLE $$||$1.table_||$$ ADD COLUMN $$
794
||quote_ident($1.name)||$$ $$||pg_typeof($2)||util.type_qual($2)||$$ DEFAULT $$
795
||quote_literal($2))
796
$_$;
797

    
798

    
799
--
800
-- Name: FUNCTION mk_const_col(col col_ref, value anyelement); Type: COMMENT; Schema: util; Owner: -
801
--
802

    
803
COMMENT ON FUNCTION mk_const_col(col col_ref, value anyelement) IS 'idempotent';
804

    
805

    
806
--
807
-- Name: mk_derived_col(col_ref, text); Type: FUNCTION; Schema: util; Owner: -
808
--
809

    
810
CREATE FUNCTION mk_derived_col(col col_ref, expr text) RETURNS void
811
    LANGUAGE plpgsql STRICT
812
    AS $_$
813
DECLARE
814
    type regtype = util.typeof(expr, col.table_::text::regtype);
815
    col_name_sql text = quote_ident(col.name);
816
BEGIN
817
    PERFORM util.create_if_not_exists($$
818
ALTER TABLE $$||col.table_||$$ ADD   COLUMN $$||col_name_sql||$$      $$||type||$$;
819
ALTER TABLE $$||col.table_||$$ ALTER COLUMN $$||col_name_sql||$$ TYPE $$||type||$$ USING
820
$$||expr||$$;
821
$$);
822
END;
823
$_$;
824

    
825

    
826
--
827
-- Name: FUNCTION mk_derived_col(col col_ref, expr text); Type: COMMENT; Schema: util; Owner: -
828
--
829

    
830
COMMENT ON FUNCTION mk_derived_col(col col_ref, expr text) IS 'idempotent';
831

    
832

    
833
--
834
-- Name: mk_map_table(text); Type: FUNCTION; Schema: util; Owner: -
835
--
836

    
837
CREATE FUNCTION mk_map_table(table_ text) RETURNS void
838
    LANGUAGE sql STRICT
839
    AS $_$
840
SELECT util.create_if_not_exists($$
841
CREATE TABLE $$||$1||$$
842
(
843
    LIKE util.map INCLUDING ALL
844
)
845
$$)
846
$_$;
847

    
848

    
849
--
850
-- Name: mk_subset_by_row_num_func(regclass, text); Type: FUNCTION; Schema: util; Owner: -
851
--
852

    
853
CREATE FUNCTION mk_subset_by_row_num_func(view_ regclass, row_num_col text) RETURNS void
854
    LANGUAGE plpgsql STRICT
855
    AS $_$
856
BEGIN
857
	EXECUTE $$
858
CREATE OR REPLACE FUNCTION $$||view_||$$(limit_ integer DEFAULT NULL::integer, offset_ integer DEFAULT NULL)
859
  RETURNS SETOF $$||view_||$$ AS
860
$BODY1$
861
SELECT * FROM $$||util.type_qual_name(view_::text::regtype)||$$
862
WHERE $$||quote_ident(row_num_col)||$$ BETWEEN COALESCE($2, 0)+1 AND COALESCE(COALESCE($2, 0)+1 + $1 - 1, 2147483647)
863
$BODY1$
864
  LANGUAGE sql STABLE
865
  COST 100
866
  ROWS 1000
867
$$;
868
-- Also create subset function which turns off enable_sort
869
	EXECUTE $$
870
CREATE OR REPLACE FUNCTION $$||view_||$$(no_sort boolean, limit_ integer DEFAULT NULL::integer, offset_ integer DEFAULT NULL)
871
  RETURNS SETOF $$||view_||$$
872
  SET enable_sort TO 'off'
873
  AS
874
$BODY1$
875
SELECT * FROM $$||util.type_qual_name(view_::text::regtype)||$$($2, $3)
876
$BODY1$
877
  LANGUAGE sql STABLE
878
  COST 100
879
  ROWS 1000
880
;
881
COMMENT ON FUNCTION $$||view_||$$(no_sort boolean, limit_ integer, offset_ integer) IS '
882
Use this for limit values greater than ~100,000 to avoid unwanted slow sorts.
883
If you want to run EXPLAIN and get expanded output, use the regular subset
884
function instead. (When a config param is set on a function, EXPLAIN produces
885
just a function scan.)
886
';
887
$$;
888
END;
889
$_$;
890

    
891

    
892
--
893
-- Name: name(regtype); Type: FUNCTION; Schema: util; Owner: -
894
--
895

    
896
CREATE FUNCTION name(type regtype) RETURNS text
897
    LANGUAGE sql STABLE STRICT
898
    AS $_$
899
SELECT typname::text FROM pg_type WHERE oid = $1
900
$_$;
901

    
902

    
903
--
904
-- Name: rename_cols(regclass, anyelement); Type: FUNCTION; Schema: util; Owner: -
905
--
906

    
907
CREATE FUNCTION rename_cols(table_ regclass, renames anyelement) RETURNS void
908
    LANGUAGE sql STRICT
909
    AS $_$
910
SELECT util.try_create($$ALTER TABLE $$||$1||$$ RENAME $$
911
||quote_ident(name)||$$ TO $$||quote_ident($2 -> name))
912
FROM util.col_names($1::text::regtype) f (name)
913
$_$;
914

    
915

    
916
--
917
-- Name: FUNCTION rename_cols(table_ regclass, renames anyelement); Type: COMMENT; Schema: util; Owner: -
918
--
919

    
920
COMMENT ON FUNCTION rename_cols(table_ regclass, renames anyelement) IS 'idempotent';
921

    
922

    
923
--
924
-- Name: reset_map_table(text); Type: FUNCTION; Schema: util; Owner: -
925
--
926

    
927
CREATE FUNCTION reset_map_table(table_ text) RETURNS void
928
    LANGUAGE sql STRICT
929
    AS $_$
930
SELECT util.mk_map_table($1);
931
SELECT util.truncate($1);
932
$_$;
933

    
934

    
935
--
936
-- Name: set_col_names(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
937
--
938

    
939
CREATE FUNCTION set_col_names(table_ regclass, names regclass) RETURNS void
940
    LANGUAGE plpgsql STRICT
941
    AS $_$
942
DECLARE
943
    old text[] = ARRAY(SELECT util.col_names(table_));
944
    new text[] = ARRAY(SELECT util.map_values(names));
945
BEGIN
946
    old = old[1:array_length(new, 1)]; -- truncate to same length
947
    PERFORM util.try_create($$ALTER TABLE $$||$1||$$ RENAME $$
948
        ||quote_ident(key)||$$ TO $$||quote_ident(value))
949
    FROM each(hstore(old, new));
950
END;
951
$_$;
952

    
953

    
954
--
955
-- Name: FUNCTION set_col_names(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
956
--
957

    
958
COMMENT ON FUNCTION set_col_names(table_ regclass, names regclass) IS 'idempotent';
959

    
960

    
961
--
962
-- Name: set_col_types(regclass, col_cast[]); Type: FUNCTION; Schema: util; Owner: -
963
--
964

    
965
CREATE FUNCTION set_col_types(table_ regclass, col_casts col_cast[]) RETURNS void
966
    LANGUAGE plpgsql STRICT
967
    AS $_$
968
DECLARE
969
    sql text = $$ALTER TABLE $$||table_||$$
970
$$||NULLIF(array_to_string(ARRAY(
971
    SELECT
972
    $$ALTER COLUMN $$||col_name_sql||$$ TYPE $$||target_type
973
    ||$$ USING $$||col_name_sql||$$::$$||target_type
974
    FROM
975
    (
976
        SELECT
977
          quote_ident(col_name) AS col_name_sql
978
        , util.col_type((table_, col_name)) AS curr_type
979
        , type AS target_type
980
        FROM unnest(col_casts)
981
    ) s
982
    WHERE curr_type != target_type
983
), '
984
, '), '');
985
BEGIN
986
    RAISE NOTICE '%', sql;
987
    EXECUTE COALESCE(sql, '');
988
END;
989
$_$;
990

    
991

    
992
--
993
-- Name: FUNCTION set_col_types(table_ regclass, col_casts col_cast[]); Type: COMMENT; Schema: util; Owner: -
994
--
995

    
996
COMMENT ON FUNCTION set_col_types(table_ regclass, col_casts col_cast[]) IS 'idempotent';
997

    
998

    
999
--
1000
-- Name: table2hstore(regclass); Type: FUNCTION; Schema: util; Owner: -
1001
--
1002

    
1003
CREATE FUNCTION table2hstore(table_ regclass) RETURNS hstore
1004
    LANGUAGE plpgsql STABLE STRICT
1005
    AS $_$
1006
DECLARE
1007
    hstore hstore;
1008
BEGIN
1009
    EXECUTE $$SELECT hstore(ARRAY(SELECT unnest(ARRAY["from", "to"]) FROM $$||
1010
        table_||$$))$$ INTO STRICT hstore;
1011
    RETURN hstore;
1012
END;
1013
$_$;
1014

    
1015

    
1016
--
1017
-- Name: to_global_col_names(regclass); Type: FUNCTION; Schema: util; Owner: -
1018
--
1019

    
1020
CREATE FUNCTION to_global_col_names(table_ regclass) RETURNS void
1021
    LANGUAGE plpgsql STRICT
1022
    AS $_$
1023
DECLARE
1024
    row record;
1025
BEGIN
1026
    FOR row IN SELECT * FROM util.col_global_names(table_::text::regtype)
1027
    LOOP
1028
        IF row.global_name != row.name THEN
1029
            EXECUTE $$ALTER TABLE $$||table_||$$ RENAME $$
1030
                ||quote_ident(row.name)||$$ TO $$||quote_ident(row.global_name);
1031
        END IF;
1032
    END LOOP;
1033
END;
1034
$_$;
1035

    
1036

    
1037
--
1038
-- Name: FUNCTION to_global_col_names(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1039
--
1040

    
1041
COMMENT ON FUNCTION to_global_col_names(table_ regclass) IS 'idempotent';
1042

    
1043

    
1044
--
1045
-- Name: truncate(regclass); Type: FUNCTION; Schema: util; Owner: -
1046
--
1047

    
1048
CREATE FUNCTION truncate(table_ regclass) RETURNS void
1049
    LANGUAGE plpgsql STRICT
1050
    AS $_$
1051
BEGIN
1052
    EXECUTE $$TRUNCATE $$||table_||$$ CASCADE$$;
1053
END;
1054
$_$;
1055

    
1056

    
1057
--
1058
-- Name: FUNCTION truncate(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1059
--
1060

    
1061
COMMENT ON FUNCTION truncate(table_ regclass) IS 'idempotent';
1062

    
1063

    
1064
--
1065
-- Name: try_create(text); Type: FUNCTION; Schema: util; Owner: -
1066
--
1067

    
1068
CREATE FUNCTION try_create(sql text) RETURNS void
1069
    LANGUAGE plpgsql STRICT
1070
    AS $$
1071
BEGIN
1072
    EXECUTE sql;
1073
EXCEPTION
1074
    WHEN undefined_column THEN NULL;
1075
    WHEN duplicate_column THEN NULL;
1076
END;
1077
$$;
1078

    
1079

    
1080
--
1081
-- Name: FUNCTION try_create(sql text); Type: COMMENT; Schema: util; Owner: -
1082
--
1083

    
1084
COMMENT ON FUNCTION try_create(sql text) IS 'idempotent';
1085

    
1086

    
1087
--
1088
-- Name: try_mk_derived_col(col_ref, text); Type: FUNCTION; Schema: util; Owner: -
1089
--
1090

    
1091
CREATE FUNCTION try_mk_derived_col(col col_ref, expr text) RETURNS void
1092
    LANGUAGE sql STRICT
1093
    AS $_$
1094
SELECT util.try_create($$SELECT util.mk_derived_col($$||quote_literal($1)||$$, $$||quote_literal($2)||$$)$$)
1095
$_$;
1096

    
1097

    
1098
--
1099
-- Name: FUNCTION try_mk_derived_col(col col_ref, expr text); Type: COMMENT; Schema: util; Owner: -
1100
--
1101

    
1102
COMMENT ON FUNCTION try_mk_derived_col(col col_ref, expr text) IS 'idempotent';
1103

    
1104

    
1105
--
1106
-- Name: type_qual(anyelement); Type: FUNCTION; Schema: util; Owner: -
1107
--
1108

    
1109
CREATE FUNCTION type_qual(value anyelement) RETURNS text
1110
    LANGUAGE sql IMMUTABLE
1111
    AS $_$
1112
SELECT CASE WHEN $1 IS NULL THEN '' ELSE $$ NOT NULL$$ END
1113
$_$;
1114

    
1115

    
1116
--
1117
-- Name: type_qual_name(regtype); Type: FUNCTION; Schema: util; Owner: -
1118
--
1119

    
1120
CREATE FUNCTION type_qual_name(type regtype) RETURNS text
1121
    LANGUAGE sql STABLE STRICT
1122
    SET search_path TO pg_temp
1123
    AS $_$
1124
SELECT $1::text
1125
$_$;
1126

    
1127

    
1128
--
1129
-- Name: typeof(text, regtype); Type: FUNCTION; Schema: util; Owner: -
1130
--
1131

    
1132
CREATE FUNCTION typeof(expr text, table_ regtype) RETURNS regtype
1133
    LANGUAGE plpgsql STABLE STRICT
1134
    AS $_$
1135
DECLARE
1136
    type regtype;
1137
BEGIN
1138
    EXECUTE $$SELECT pg_typeof($$||expr||$$) FROM (SELECT (NULL::$$||table_||
1139
    $$).*) _s$$ INTO STRICT type;
1140
    RETURN type;
1141
END;
1142
$_$;
1143

    
1144

    
1145
--
1146
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: util; Owner: -
1147
--
1148

    
1149
CREATE AGGREGATE join_strs(text, text) (
1150
    SFUNC = join_strs_transform,
1151
    STYPE = text
1152
);
1153

    
1154

    
1155
--
1156
-- Name: ->; Type: OPERATOR; Schema: util; Owner: -
1157
--
1158

    
1159
CREATE OPERATOR -> (
1160
    PROCEDURE = map_get,
1161
    LEFTARG = regclass,
1162
    RIGHTARG = text
1163
);
1164

    
1165

    
1166
SET default_tablespace = '';
1167

    
1168
SET default_with_oids = false;
1169

    
1170
--
1171
-- Name: map; Type: TABLE; Schema: util; Owner: -; Tablespace: 
1172
--
1173

    
1174
CREATE TABLE map (
1175
    "from" text NOT NULL,
1176
    "to" text,
1177
    filter text,
1178
    notes text
1179
);
1180

    
1181

    
1182
--
1183
-- Data for Name: map; Type: TABLE DATA; Schema: util; Owner: -
1184
--
1185

    
1186

    
1187

    
1188
--
1189
-- Name: map_pkey; Type: CONSTRAINT; Schema: util; Owner: -; Tablespace: 
1190
--
1191

    
1192
ALTER TABLE ONLY map
1193
    ADD CONSTRAINT map_pkey PRIMARY KEY ("from");
1194

    
1195

    
1196
--
1197
-- PostgreSQL database dump complete
1198
--
1199

    
(15-15/25)