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: _map(hstore, anyelement); Type: FUNCTION; Schema: util; Owner: -
292
--
293

    
294
CREATE FUNCTION _map(map hstore, value anyelement) RETURNS anyelement
295
    LANGUAGE plpgsql IMMUTABLE STRICT
296
    AS $$
297
DECLARE
298
    result value%TYPE := util._map(map, value::text)::unknown;
299
BEGIN
300
    RETURN result;
301
END;
302
$$;
303

    
304

    
305
--
306
-- Name: _max(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
307
--
308

    
309
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
310
    LANGUAGE sql IMMUTABLE
311
    AS $_$
312
SELECT GREATEST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
313
$_$;
314

    
315

    
316
--
317
-- Name: _merge(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
318
--
319

    
320
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
321
    LANGUAGE sql IMMUTABLE
322
    AS $_$
323
SELECT util.join_strs(value, '; ')
324
FROM
325
(
326
    SELECT *
327
    FROM
328
    (
329
        SELECT
330
        DISTINCT ON (value)
331
        *
332
        FROM
333
        (VALUES
334
              (1, $1)
335
            , (2, $2)
336
            , (3, $3)
337
            , (4, $4)
338
            , (5, $5)
339
            , (6, $6)
340
            , (7, $7)
341
            , (8, $8)
342
            , (9, $9)
343
            , (10, $10)
344
        )
345
        AS v (sort_order, value)
346
        WHERE value IS NOT NULL
347
    )
348
    AS v
349
    ORDER BY sort_order
350
)
351
AS v
352
$_$;
353

    
354

    
355
--
356
-- Name: _merge_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
357
--
358

    
359
CREATE FUNCTION _merge_prefix(prefix text DEFAULT NULL::text, value text DEFAULT NULL::text) RETURNS text
360
    LANGUAGE sql IMMUTABLE
361
    AS $_$
362
SELECT _join_words((CASE WHEN $2 ~ ('^'||$1||E'\\y') THEN NULL ELSE $1 END), $2)
363
$_$;
364

    
365

    
366
--
367
-- Name: _merge_words(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
368
--
369

    
370
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
371
    LANGUAGE sql IMMUTABLE
372
    AS $_$
373
SELECT util.join_strs(value, ' ')
374
FROM
375
(
376
    SELECT *
377
    FROM
378
    (
379
        SELECT
380
        DISTINCT ON (value)
381
        *
382
        FROM
383
        (VALUES
384
              (1, $1)
385
            , (2, $2)
386
            , (3, $3)
387
            , (4, $4)
388
            , (5, $5)
389
            , (6, $6)
390
            , (7, $7)
391
            , (8, $8)
392
            , (9, $9)
393
            , (10, $10)
394
        )
395
        AS v (sort_order, value)
396
        WHERE value IS NOT NULL
397
    )
398
    AS v
399
    ORDER BY sort_order
400
)
401
AS v
402
$_$;
403

    
404

    
405
--
406
-- Name: _min(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: -
407
--
408

    
409
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
410
    LANGUAGE sql IMMUTABLE
411
    AS $_$
412
SELECT LEAST($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
413
$_$;
414

    
415

    
416
--
417
-- Name: _not(boolean); Type: FUNCTION; Schema: util; Owner: -
418
--
419

    
420
CREATE FUNCTION _not(value boolean) RETURNS boolean
421
    LANGUAGE sql IMMUTABLE STRICT
422
    AS $_$
423
SELECT NOT $1
424
$_$;
425

    
426

    
427
--
428
-- Name: _now(); Type: FUNCTION; Schema: util; Owner: -
429
--
430

    
431
CREATE FUNCTION _now() RETURNS timestamp with time zone
432
    LANGUAGE sql STABLE
433
    AS $$
434
SELECT now()
435
$$;
436

    
437

    
438
--
439
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: util; Owner: -
440
--
441

    
442
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type datatype DEFAULT 'str'::datatype) RETURNS anyelement
443
    LANGUAGE plpgsql IMMUTABLE
444
    AS $$
445
DECLARE
446
    type util.datatype NOT NULL := type; -- add NOT NULL
447
BEGIN
448
    IF type = 'str' THEN RETURN nullif(value::text, "null");
449
    -- Invalid value is ignored, but invalid null value generates error
450
    ELSIF type = 'float' THEN
451
        DECLARE
452
            -- Outside the try block so that invalid null value generates error
453
            "null" double precision := "null"::double precision;
454
        BEGIN
455
            RETURN nullif(value::double precision, "null");
456
        EXCEPTION
457
            WHEN data_exception THEN RETURN value; -- ignore invalid value
458
        END;
459
    END IF;
460
END;
461
$$;
462

    
463

    
464
--
465
-- Name: _nullIf(anyelement, text, text); Type: FUNCTION; Schema: util; Owner: -
466
--
467

    
468
CREATE FUNCTION "_nullIf"(value anyelement, "null" text, type text) RETURNS anyelement
469
    LANGUAGE sql IMMUTABLE
470
    AS $_$
471
SELECT util."_nullIf"($1, $2, $3::util.datatype)
472
$_$;
473

    
474

    
475
--
476
-- Name: _or(boolean, boolean, boolean, boolean, boolean); Type: FUNCTION; Schema: util; Owner: -
477
--
478

    
479
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
480
    LANGUAGE sql IMMUTABLE
481
    AS $_$
482
SELECT bool_or(value)
483
FROM
484
(VALUES
485
      ($1)
486
    , ($2)
487
    , ($3)
488
    , ($4)
489
    , ($5)
490
)
491
AS v (value)
492
$_$;
493

    
494

    
495
--
496
-- Name: FUNCTION _or("0" boolean, "1" boolean, "2" boolean, "3" boolean, "4" boolean); Type: COMMENT; Schema: util; Owner: -
497
--
498

    
499
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.';
500

    
501

    
502
--
503
-- Name: _range(double precision, double precision); Type: FUNCTION; Schema: util; Owner: -
504
--
505

    
506
CREATE FUNCTION _range("from" double precision DEFAULT NULL::double precision, "to" double precision DEFAULT NULL::double precision) RETURNS double precision
507
    LANGUAGE sql IMMUTABLE
508
    AS $_$
509
SELECT $2 - $1
510
$_$;
511

    
512

    
513
--
514
-- Name: _split(text, text); Type: FUNCTION; Schema: util; Owner: -
515
--
516

    
517
CREATE FUNCTION _split(value text DEFAULT NULL::text, separator text DEFAULT '; '::text) RETURNS SETOF text
518
    LANGUAGE sql IMMUTABLE STRICT
519
    AS $_$
520
SELECT regexp_split_to_table($1, $2)
521
$_$;
522

    
523

    
524
--
525
-- Name: all_same_final(anyarray); Type: FUNCTION; Schema: util; Owner: -
526
--
527

    
528
CREATE FUNCTION all_same_final(state anyarray) RETURNS boolean
529
    LANGUAGE sql IMMUTABLE
530
    AS $_$
531
SELECT $1 IS NULL/*no rows*/ OR util.not_empty($1)/*not no_match_sentinel*/
532
$_$;
533

    
534

    
535
--
536
-- Name: all_same_transform(anyarray, anyelement); Type: FUNCTION; Schema: util; Owner: -
537
--
538

    
539
CREATE FUNCTION all_same_transform(state anyarray, value anyelement) RETURNS anyarray
540
    LANGUAGE plpgsql IMMUTABLE
541
    AS $$
542
DECLARE
543
	value_cmp         state%TYPE = ARRAY[value];
544
	state             state%TYPE = COALESCE(state, value_cmp);
545
	no_match_sentinel state%TYPE = value_cmp[1:0]/*=ARRAY[]::state%TYPE*/;
546
BEGIN
547
	RETURN (CASE WHEN value_cmp IS NOT DISTINCT FROM state THEN state ELSE no_match_sentinel END);
548
END;
549
$$;
550

    
551

    
552
--
553
-- Name: array_fill(anyelement, integer); Type: FUNCTION; Schema: util; Owner: -
554
--
555

    
556
CREATE FUNCTION array_fill(value anyelement, length integer) RETURNS anyarray
557
    LANGUAGE sql IMMUTABLE
558
    AS $_$
559
SELECT pg_catalog.array_fill($1, ARRAY[$2])
560
$_$;
561

    
562

    
563
--
564
-- Name: array_length(anyarray); Type: FUNCTION; Schema: util; Owner: -
565
--
566

    
567
CREATE FUNCTION array_length("array" anyarray) RETURNS integer
568
    LANGUAGE sql IMMUTABLE
569
    AS $_$
570
SELECT util.array_length($1, 1)
571
$_$;
572

    
573

    
574
--
575
-- Name: array_length(anyarray, integer); Type: FUNCTION; Schema: util; Owner: -
576
--
577

    
578
CREATE FUNCTION array_length("array" anyarray, dimension integer) RETURNS integer
579
    LANGUAGE sql IMMUTABLE
580
    AS $_$
581
SELECT CASE WHEN $1 IS NULL THEN NULL ELSE COALESCE(pg_catalog.array_length($1, $2), 0) END
582
$_$;
583

    
584

    
585
--
586
-- Name: FUNCTION array_length("array" anyarray, dimension integer); Type: COMMENT; Schema: util; Owner: -
587
--
588

    
589
COMMENT ON FUNCTION array_length("array" anyarray, dimension integer) IS 'returns 0 instead of NULL for empty arrays';
590

    
591

    
592
--
593
-- Name: cluster_index(regclass); Type: FUNCTION; Schema: util; Owner: -
594
--
595

    
596
CREATE FUNCTION cluster_index(table_ regclass) RETURNS regclass
597
    LANGUAGE sql STABLE STRICT
598
    AS $_$
599
SELECT indexrelid FROM pg_index WHERE indrelid = $1 AND indisclustered
600
$_$;
601

    
602

    
603
--
604
-- Name: cluster_once(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
605
--
606

    
607
CREATE FUNCTION cluster_once(table_ regclass, index regclass) RETURNS void
608
    LANGUAGE plpgsql STRICT
609
    AS $_$
610
BEGIN
611
    -- not yet clustered (ARRAY[] compares NULLs literally)
612
    IF ARRAY[util.cluster_index(table_)] != ARRAY[index] THEN
613
        EXECUTE $$CLUSTER $$||table_||$$ USING $$||index;
614
    END IF;
615
END;
616
$_$;
617

    
618

    
619
--
620
-- Name: FUNCTION cluster_once(table_ regclass, index regclass); Type: COMMENT; Schema: util; Owner: -
621
--
622

    
623
COMMENT ON FUNCTION cluster_once(table_ regclass, index regclass) IS 'idempotent';
624

    
625

    
626
--
627
-- Name: col_comment(col_ref); Type: FUNCTION; Schema: util; Owner: -
628
--
629

    
630
CREATE FUNCTION col_comment(col col_ref) RETURNS text
631
    LANGUAGE plpgsql STABLE STRICT
632
    AS $$
633
DECLARE
634
	comment text;
635
BEGIN
636
	SELECT description
637
	FROM pg_attribute
638
	LEFT JOIN pg_description ON objoid = attrelid
639
		AND classoid = 'pg_class'::regclass AND objsubid = attnum
640
	WHERE attrelid = col.table_ AND attname = col.name
641
	INTO STRICT comment
642
	;
643
	RETURN comment;
644
EXCEPTION
645
	WHEN no_data_found THEN PERFORM util.raise_undefined_column(col);
646
END;
647
$$;
648

    
649

    
650
--
651
-- Name: col_default_sql(col_ref); Type: FUNCTION; Schema: util; Owner: -
652
--
653

    
654
CREATE FUNCTION col_default_sql(col col_ref) RETURNS text
655
    LANGUAGE plpgsql STABLE STRICT
656
    AS $$
657
DECLARE
658
	default_sql text;
659
BEGIN
660
	SELECT adsrc
661
	FROM pg_attribute
662
	LEFT JOIN pg_attrdef ON adrelid = attrelid AND adnum = attnum
663
	WHERE attrelid = col.table_ AND attname = col.name
664
	INTO STRICT default_sql
665
	;
666
	RETURN default_sql;
667
EXCEPTION
668
	WHEN no_data_found THEN PERFORM util.raise_undefined_column(col);
669
END;
670
$$;
671

    
672

    
673
--
674
-- Name: col_default_value(col_ref, anyelement); Type: FUNCTION; Schema: util; Owner: -
675
--
676

    
677
CREATE FUNCTION col_default_value(col col_ref, ret_type_null anyelement DEFAULT NULL::text) RETURNS anyelement
678
    LANGUAGE sql STABLE
679
    AS $_$
680
SELECT util.eval_expr_passthru(util.col_default_sql($1), $2)
681
$_$;
682

    
683

    
684
--
685
-- Name: FUNCTION col_default_value(col col_ref, ret_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
686
--
687

    
688
COMMENT ON FUNCTION col_default_value(col col_ref, ret_type_null anyelement) IS 'ret_type_null: NULL::ret_type';
689

    
690

    
691
--
692
-- Name: col_exists(col_ref); Type: FUNCTION; Schema: util; Owner: -
693
--
694

    
695
CREATE FUNCTION col_exists(col col_ref) RETURNS boolean
696
    LANGUAGE plpgsql STRICT
697
    AS $$
698
BEGIN
699
    PERFORM util.col_type(col);
700
    RETURN true;
701
EXCEPTION
702
    WHEN undefined_column THEN RETURN false;
703
END;
704
$$;
705

    
706

    
707
--
708
-- Name: col_global_names(regtype); Type: FUNCTION; Schema: util; Owner: -
709
--
710

    
711
CREATE FUNCTION col_global_names(type regtype, OUT name text, OUT global_name text) RETURNS SETOF record
712
    LANGUAGE plpgsql STABLE STRICT
713
    AS $$
714
DECLARE
715
    prefix text := util.name(type)||'.';
716
BEGIN
717
    RETURN QUERY
718
        SELECT name_, (CASE WHEN util.contains(search_for:='.', in_str:=name_) THEN '' ELSE prefix END)||name_
719
        FROM util.col_names(type) f (name_);
720
END;
721
$$;
722

    
723

    
724
--
725
-- Name: col_names(regtype); Type: FUNCTION; Schema: util; Owner: -
726
--
727

    
728
CREATE FUNCTION col_names(type regtype) RETURNS SETOF text
729
    LANGUAGE plpgsql STABLE STRICT
730
    AS $_$
731
BEGIN
732
    RETURN QUERY EXECUTE $$SELECT skeys(hstore(NULL::$$||type||$$))$$;
733
END;
734
$_$;
735

    
736

    
737
--
738
-- Name: col_names(regclass); Type: FUNCTION; Schema: util; Owner: -
739
--
740

    
741
CREATE FUNCTION col_names(table_ regclass) RETURNS SETOF text
742
    LANGUAGE sql STABLE STRICT
743
    AS $_$
744
SELECT attname::text
745
FROM pg_attribute
746
WHERE attrelid = $1 AND attnum >= 1 AND NOT attisdropped
747
ORDER BY attnum
748
$_$;
749

    
750

    
751
--
752
-- Name: col_type(col_ref); Type: FUNCTION; Schema: util; Owner: -
753
--
754

    
755
CREATE FUNCTION col_type(col col_ref) RETURNS regtype
756
    LANGUAGE plpgsql STABLE STRICT
757
    AS $$
758
DECLARE
759
    type regtype;
760
BEGIN
761
    SELECT atttypid FROM pg_attribute
762
    WHERE attrelid = col.table_ AND attname = col.name
763
    INTO STRICT type
764
    ;
765
    RETURN type;
766
EXCEPTION
767
    WHEN no_data_found THEN
768
        RAISE undefined_column USING MESSAGE =
769
            concat('undefined column: ', col.name);
770
END;
771
$$;
772

    
773

    
774
--
775
-- Name: contains(text, text); Type: FUNCTION; Schema: util; Owner: -
776
--
777

    
778
CREATE FUNCTION contains(search_for text, in_str text) RETURNS boolean
779
    LANGUAGE sql IMMUTABLE STRICT
780
    AS $_$
781
SELECT position($1 in $2) > 0 /*1-based offset*/
782
$_$;
783

    
784

    
785
--
786
-- Name: create_if_not_exists(text); Type: FUNCTION; Schema: util; Owner: -
787
--
788

    
789
CREATE FUNCTION create_if_not_exists(sql text) RETURNS void
790
    LANGUAGE plpgsql STRICT
791
    AS $$
792
BEGIN
793
    PERFORM util.eval(sql);
794
EXCEPTION
795
    WHEN duplicate_table  THEN NULL;
796
    WHEN duplicate_object THEN NULL; -- e.g. constraint
797
    WHEN duplicate_column THEN NULL;
798
    WHEN invalid_table_definition THEN
799
        IF SQLERRM LIKE 'multiple primary keys for table % are not allowed' THEN NULL;
800
        ELSE RAISE USING ERRCODE = SQLSTATE, MESSAGE = SQLERRM; -- rethrow
801
        END IF;
802
END;
803
$$;
804

    
805

    
806
--
807
-- Name: FUNCTION create_if_not_exists(sql text); Type: COMMENT; Schema: util; Owner: -
808
--
809

    
810
COMMENT ON FUNCTION create_if_not_exists(sql text) IS 'idempotent';
811

    
812

    
813
--
814
-- Name: derived_cols(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
815
--
816

    
817
CREATE FUNCTION derived_cols(table_ regclass, names regclass) RETURNS SETOF text
818
    LANGUAGE sql STABLE STRICT
819
    AS $_$
820
SELECT util.eval2set($$
821
SELECT col
822
FROM util.col_names($$||quote_nullable($1)||$$::regclass) f (col)
823
LEFT JOIN $$||$2||$$ ON "to" = col
824
WHERE "from" IS NULL
825
$$, NULL::text)
826
$_$;
827

    
828

    
829
--
830
-- Name: FUNCTION derived_cols(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
831
--
832

    
833
COMMENT ON FUNCTION derived_cols(table_ regclass, names regclass) IS 'gets table_''s derived columns (all the columns not in the names table)';
834

    
835

    
836
--
837
-- Name: do_optionally_ignore(text, boolean); Type: FUNCTION; Schema: util; Owner: -
838
--
839

    
840
CREATE FUNCTION do_optionally_ignore(sql text, ignore boolean) RETURNS void
841
    LANGUAGE sql STRICT
842
    AS $_$
843
SELECT CASE WHEN $2 THEN util.try_create($1) ELSE util.create_if_not_exists($1) END
844
$_$;
845

    
846

    
847
--
848
-- Name: FUNCTION do_optionally_ignore(sql text, ignore boolean); Type: COMMENT; Schema: util; Owner: -
849
--
850

    
851
COMMENT ON FUNCTION do_optionally_ignore(sql text, ignore boolean) IS 'idempotent';
852

    
853

    
854
--
855
-- Name: drop_column(col_ref); Type: FUNCTION; Schema: util; Owner: -
856
--
857

    
858
CREATE FUNCTION drop_column(col col_ref) RETURNS void
859
    LANGUAGE sql STRICT
860
    AS $_$
861
SELECT util.eval($$ALTER TABLE $$||$1.table_||$$ DROP COLUMN IF EXISTS $$||
862
quote_ident($1.name))
863
$_$;
864

    
865

    
866
--
867
-- Name: FUNCTION drop_column(col col_ref); Type: COMMENT; Schema: util; Owner: -
868
--
869

    
870
COMMENT ON FUNCTION drop_column(col col_ref) IS 'idempotent';
871

    
872

    
873
--
874
-- Name: drop_table(text); Type: FUNCTION; Schema: util; Owner: -
875
--
876

    
877
CREATE FUNCTION drop_table(table_ text) RETURNS void
878
    LANGUAGE sql STRICT
879
    AS $_$
880
SELECT util.eval($$DROP TABLE IF EXISTS $$||$1)
881
$_$;
882

    
883

    
884
--
885
-- Name: FUNCTION drop_table(table_ text); Type: COMMENT; Schema: util; Owner: -
886
--
887

    
888
COMMENT ON FUNCTION drop_table(table_ text) IS 'idempotent';
889

    
890

    
891
--
892
-- Name: empty_array(anyelement); Type: FUNCTION; Schema: util; Owner: -
893
--
894

    
895
CREATE FUNCTION empty_array(elem_type_null anyelement DEFAULT NULL::text) RETURNS anyarray
896
    LANGUAGE sql IMMUTABLE
897
    AS $_$
898
SELECT util.array_fill($1, 0)
899
$_$;
900

    
901

    
902
--
903
-- Name: FUNCTION empty_array(elem_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
904
--
905

    
906
COMMENT ON FUNCTION empty_array(elem_type_null anyelement) IS 'constructs proper empty 1-dimensional array whose dimensions are not NULL ( ''{}''::text[] does not do this)';
907

    
908

    
909
--
910
-- Name: ensure_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
911
--
912

    
913
CREATE FUNCTION ensure_prefix(prefix text, str text) RETURNS text
914
    LANGUAGE sql IMMUTABLE STRICT
915
    AS $_$
916
SELECT (CASE WHEN util.has_prefix($1, $2) THEN $2 ELSE $1||$2 END)
917
$_$;
918

    
919

    
920
--
921
-- Name: eval(text); Type: FUNCTION; Schema: util; Owner: -
922
--
923

    
924
CREATE FUNCTION eval(sql text) RETURNS void
925
    LANGUAGE plpgsql STRICT
926
    AS $$
927
BEGIN
928
    RAISE NOTICE '%', sql;
929
    EXECUTE sql;
930
END;
931
$$;
932

    
933

    
934
--
935
-- Name: eval2set(text, anyelement); Type: FUNCTION; Schema: util; Owner: -
936
--
937

    
938
CREATE FUNCTION eval2set(sql text, ret_type_null anyelement DEFAULT NULL::text) RETURNS SETOF anyelement
939
    LANGUAGE plpgsql
940
    AS $$
941
BEGIN
942
	RAISE NOTICE '%', sql;
943
	RETURN QUERY EXECUTE sql;
944
END;
945
$$;
946

    
947

    
948
--
949
-- Name: FUNCTION eval2set(sql text, ret_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
950
--
951

    
952
COMMENT ON FUNCTION eval2set(sql text, ret_type_null anyelement) IS 'ret_type_null: NULL::ret_type';
953

    
954

    
955
--
956
-- Name: eval2val(text, anyelement); Type: FUNCTION; Schema: util; Owner: -
957
--
958

    
959
CREATE FUNCTION eval2val(sql text, ret_type_null anyelement DEFAULT NULL::text) RETURNS anyelement
960
    LANGUAGE plpgsql
961
    AS $$
962
DECLARE
963
	ret_val ret_type_null%TYPE;
964
BEGIN
965
	RAISE NOTICE '%', sql;
966
	EXECUTE sql INTO STRICT ret_val;
967
	RETURN ret_val;
968
END;
969
$$;
970

    
971

    
972
--
973
-- Name: FUNCTION eval2val(sql text, ret_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
974
--
975

    
976
COMMENT ON FUNCTION eval2val(sql text, ret_type_null anyelement) IS 'ret_type_null: NULL::ret_type';
977

    
978

    
979
--
980
-- Name: eval_expr(text, anyelement); Type: FUNCTION; Schema: util; Owner: -
981
--
982

    
983
CREATE FUNCTION eval_expr(sql text, ret_type_null anyelement DEFAULT NULL::text) RETURNS anyelement
984
    LANGUAGE sql
985
    AS $_$
986
SELECT util.eval2val($$SELECT $$||$1, $2)
987
$_$;
988

    
989

    
990
--
991
-- Name: FUNCTION eval_expr(sql text, ret_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
992
--
993

    
994
COMMENT ON FUNCTION eval_expr(sql text, ret_type_null anyelement) IS 'ret_type_null: NULL::ret_type';
995

    
996

    
997
--
998
-- Name: eval_expr_passthru(text, anyelement); Type: FUNCTION; Schema: util; Owner: -
999
--
1000

    
1001
CREATE FUNCTION eval_expr_passthru(sql text, ret_type_null anyelement DEFAULT NULL::text) RETURNS anyelement
1002
    LANGUAGE sql
1003
    AS $_$
1004
SELECT CASE WHEN $1 IS NULL THEN NULL ELSE util.eval_expr($1, $2) END
1005
$_$;
1006

    
1007

    
1008
--
1009
-- Name: FUNCTION eval_expr_passthru(sql text, ret_type_null anyelement); Type: COMMENT; Schema: util; Owner: -
1010
--
1011

    
1012
COMMENT ON FUNCTION eval_expr_passthru(sql text, ret_type_null anyelement) IS 'sql: can be NULL, which will be passed through
1013
ret_type_null: NULL::ret_type';
1014

    
1015

    
1016
--
1017
-- Name: existing_cols(regclass, text[]); Type: FUNCTION; Schema: util; Owner: -
1018
--
1019

    
1020
CREATE FUNCTION existing_cols(table_ regclass, VARIADIC col_names text[]) RETURNS SETOF text
1021
    LANGUAGE sql STABLE STRICT
1022
    AS $_$
1023
SELECT col_name
1024
FROM unnest($2) s (col_name)
1025
WHERE util.col_exists(($1, col_name))
1026
$_$;
1027

    
1028

    
1029
--
1030
-- Name: fix_array(anyarray); Type: FUNCTION; Schema: util; Owner: -
1031
--
1032

    
1033
CREATE FUNCTION fix_array("array" anyarray) RETURNS anyarray
1034
    LANGUAGE sql IMMUTABLE
1035
    AS $_$
1036
-- STRICT handles NULLs, so that the array will always be a value
1037
SELECT CASE WHEN $1 IS NULL THEN NULL ELSE (
1038
	CASE WHEN pg_catalog.array_ndims($1) IS NULL THEN util.empty_array($1[1]) ELSE $1 END
1039
) END
1040
$_$;
1041

    
1042

    
1043
--
1044
-- Name: FUNCTION fix_array("array" anyarray); Type: COMMENT; Schema: util; Owner: -
1045
--
1046

    
1047
COMMENT ON FUNCTION fix_array("array" anyarray) IS 'ensures that an array will always have proper non-NULL dimensions';
1048

    
1049

    
1050
--
1051
-- Name: force_update_view(text, text); Type: FUNCTION; Schema: util; Owner: -
1052
--
1053

    
1054
CREATE FUNCTION force_update_view(view_ text, query text) RETURNS void
1055
    LANGUAGE plpgsql STRICT
1056
    AS $_$
1057
DECLARE
1058
	mk_view text = $$CREATE OR REPLACE VIEW $$||view_||$$ AS
1059
$$||query;
1060
BEGIN
1061
	EXECUTE mk_view;
1062
EXCEPTION
1063
WHEN invalid_table_definition THEN
1064
	IF SQLERRM = 'cannot drop columns from view'
1065
	OR SQLERRM LIKE 'cannot change name of view column "%" to "%"'
1066
	THEN
1067
		EXECUTE $$DROP VIEW $$||view_||$$ CASCADE$$;
1068
		EXECUTE mk_view;
1069
	ELSE RAISE USING ERRCODE = SQLSTATE, MESSAGE = SQLERRM;
1070
	END IF;
1071
END;
1072
$_$;
1073

    
1074

    
1075
--
1076
-- Name: FUNCTION force_update_view(view_ text, query text); Type: COMMENT; Schema: util; Owner: -
1077
--
1078

    
1079
COMMENT ON FUNCTION force_update_view(view_ text, query text) IS 'idempotent';
1080

    
1081

    
1082
--
1083
-- Name: has_prefix(text, text); Type: FUNCTION; Schema: util; Owner: -
1084
--
1085

    
1086
CREATE FUNCTION has_prefix(prefix text, str text) RETURNS boolean
1087
    LANGUAGE sql IMMUTABLE STRICT
1088
    AS $_$
1089
SELECT substring($2 for length($1)) = $1
1090
$_$;
1091

    
1092

    
1093
--
1094
-- Name: hstore(text[], text); Type: FUNCTION; Schema: util; Owner: -
1095
--
1096

    
1097
CREATE FUNCTION hstore(keys text[], value text) RETURNS hstore
1098
    LANGUAGE sql IMMUTABLE
1099
    AS $_$
1100
SELECT hstore(util.fix_array($1), util.array_fill($2, util.array_length($1)))
1101
$_$;
1102

    
1103

    
1104
--
1105
-- Name: FUNCTION hstore(keys text[], value text); Type: COMMENT; Schema: util; Owner: -
1106
--
1107

    
1108
COMMENT ON FUNCTION hstore(keys text[], value text) IS 'avoids repeating the same value for each key';
1109

    
1110

    
1111
--
1112
-- Name: hstore(text[], anyelement); Type: FUNCTION; Schema: util; Owner: -
1113
--
1114

    
1115
CREATE FUNCTION hstore(keys text[], value anyelement) RETURNS hstore
1116
    LANGUAGE sql IMMUTABLE
1117
    AS $_$
1118
SELECT util.hstore($1, $2::text)
1119
$_$;
1120

    
1121

    
1122
--
1123
-- Name: FUNCTION hstore(keys text[], value anyelement); Type: COMMENT; Schema: util; Owner: -
1124
--
1125

    
1126
COMMENT ON FUNCTION hstore(keys text[], value anyelement) IS 'avoids repeating the same value for each key';
1127

    
1128

    
1129
--
1130
-- Name: is_constant(col_ref); Type: FUNCTION; Schema: util; Owner: -
1131
--
1132

    
1133
CREATE FUNCTION is_constant(col col_ref) RETURNS boolean
1134
    LANGUAGE sql STABLE STRICT
1135
    AS $_$
1136
SELECT COALESCE(util.col_comment($1) LIKE 'constant%', false)
1137
$_$;
1138

    
1139

    
1140
--
1141
-- Name: join_strs_transform(text, text, text); Type: FUNCTION; Schema: util; Owner: -
1142
--
1143

    
1144
CREATE FUNCTION join_strs_transform(state text, value text, delim text) RETURNS text
1145
    LANGUAGE sql IMMUTABLE STRICT
1146
    AS $_$
1147
SELECT $1 || $3 || $2
1148
$_$;
1149

    
1150

    
1151
--
1152
-- Name: map_filter_insert(); Type: FUNCTION; Schema: util; Owner: -
1153
--
1154

    
1155
CREATE FUNCTION map_filter_insert() RETURNS trigger
1156
    LANGUAGE plpgsql
1157
    AS $$
1158
BEGIN
1159
	IF new."from" LIKE ':%' THEN RETURN NULL; END IF; -- exclude metadata values
1160
	RETURN new;
1161
END;
1162
$$;
1163

    
1164

    
1165
--
1166
-- Name: map_get(regclass, text); Type: FUNCTION; Schema: util; Owner: -
1167
--
1168

    
1169
CREATE FUNCTION map_get(map regclass, key text) RETURNS text
1170
    LANGUAGE plpgsql STABLE STRICT
1171
    AS $_$
1172
DECLARE
1173
    value text;
1174
BEGIN
1175
    EXECUTE $$SELECT "to" FROM $$||map||$$ WHERE "from" = $1$$
1176
        INTO value USING key;
1177
    RETURN value;
1178
END;
1179
$_$;
1180

    
1181

    
1182
--
1183
-- Name: map_nulls(text[], anyelement); Type: FUNCTION; Schema: util; Owner: -
1184
--
1185

    
1186
CREATE FUNCTION map_nulls(nulls text[], value anyelement) RETURNS anyelement
1187
    LANGUAGE sql IMMUTABLE
1188
    AS $_$
1189
SELECT util._map(util.nulls_map($1), $2)
1190
$_$;
1191

    
1192

    
1193
--
1194
-- Name: FUNCTION map_nulls(nulls text[], value anyelement); Type: COMMENT; Schema: util; Owner: -
1195
--
1196

    
1197
COMMENT ON FUNCTION map_nulls(nulls text[], value anyelement) IS 'due to dynamic inlining[1], this is just as fast as util._map() which it wraps[2].
1198

    
1199
[1] inlining of function calls, which is different from constant folding
1200
[2] _map()''s profiling query
1201
SELECT util._map(''"1"=>NULL, "2"=>NULL, "3"=>NULL, *=>*'', v) FROM unnest(array_fill(1, array[100000])) f (v)
1202
and map_nulls()''s profiling query
1203
SELECT util.map_nulls(array[1, 2, 3]::text[], v) FROM unnest(array_fill(1, array[100000])) f (v)
1204
both take ~920 ms.
1205
also, /inputs/REMIB/Specimen/postprocess.sql > country takes the same amount of time (56000 ms) to build with map_nulls() as with a literal hstore.';
1206

    
1207

    
1208
--
1209
-- Name: map_values(regclass); Type: FUNCTION; Schema: util; Owner: -
1210
--
1211

    
1212
CREATE FUNCTION map_values(map regclass) RETURNS SETOF text
1213
    LANGUAGE plpgsql STABLE STRICT
1214
    AS $_$
1215
BEGIN
1216
    RETURN QUERY EXECUTE $$SELECT "to" FROM $$||map;
1217
END;
1218
$_$;
1219

    
1220

    
1221
--
1222
-- Name: mk_const_col(col_ref, anyelement); Type: FUNCTION; Schema: util; Owner: -
1223
--
1224

    
1225
CREATE FUNCTION mk_const_col(col col_ref, value anyelement) RETURNS void
1226
    LANGUAGE sql STRICT
1227
    AS $_$
1228
SELECT util.create_if_not_exists($$
1229
ALTER TABLE $$||$1.table_||$$ ADD COLUMN $$
1230
||quote_ident($1.name)||$$ $$||pg_typeof($2)||util.type_qual($2)||$$ DEFAULT $$
1231
||quote_literal($2)||$$;
1232
COMMENT ON COLUMN $$||$1.table_||$$.$$||quote_ident($1.name)||$$ IS 'constant';
1233
$$)
1234
$_$;
1235

    
1236

    
1237
--
1238
-- Name: FUNCTION mk_const_col(col col_ref, value anyelement); Type: COMMENT; Schema: util; Owner: -
1239
--
1240

    
1241
COMMENT ON FUNCTION mk_const_col(col col_ref, value anyelement) IS 'idempotent';
1242

    
1243

    
1244
--
1245
-- Name: mk_derived_col(col_ref, text, boolean); Type: FUNCTION; Schema: util; Owner: -
1246
--
1247

    
1248
CREATE FUNCTION mk_derived_col(col col_ref, expr text, overwrite boolean DEFAULT false) RETURNS void
1249
    LANGUAGE plpgsql STRICT
1250
    AS $_$
1251
DECLARE
1252
    type regtype = util.typeof(expr, col.table_::text::regtype);
1253
    col_name_sql text = quote_ident(col.name);
1254
BEGIN
1255
    PERFORM util.create_if_not_exists((CASE WHEN overwrite THEN '' ELSE $$
1256
ALTER TABLE $$||col.table_||$$ ADD   COLUMN $$||col_name_sql||$$      $$||type||$$;$$ END)||$$
1257
ALTER TABLE $$||col.table_||$$ ALTER COLUMN $$||col_name_sql||$$ TYPE $$||type||$$ USING
1258
$$||expr||$$;
1259
$$);
1260
END;
1261
$_$;
1262

    
1263

    
1264
--
1265
-- Name: FUNCTION mk_derived_col(col col_ref, expr text, overwrite boolean); Type: COMMENT; Schema: util; Owner: -
1266
--
1267

    
1268
COMMENT ON FUNCTION mk_derived_col(col col_ref, expr text, overwrite boolean) IS 'idempotent';
1269

    
1270

    
1271
--
1272
-- Name: mk_map_table(text); Type: FUNCTION; Schema: util; Owner: -
1273
--
1274

    
1275
CREATE FUNCTION mk_map_table(table_ text) RETURNS void
1276
    LANGUAGE sql STRICT
1277
    AS $_$
1278
SELECT util.create_if_not_exists($$
1279
CREATE TABLE $$||$1||$$
1280
(
1281
    LIKE util.map INCLUDING ALL
1282
);
1283

    
1284
CREATE TRIGGER map_filter_insert
1285
  BEFORE INSERT
1286
  ON $$||$1||$$
1287
  FOR EACH ROW
1288
  EXECUTE PROCEDURE util.map_filter_insert();
1289
$$)
1290
$_$;
1291

    
1292

    
1293
--
1294
-- Name: mk_source_col(regclass); Type: FUNCTION; Schema: util; Owner: -
1295
--
1296

    
1297
CREATE FUNCTION mk_source_col(table_ regclass) RETURNS void
1298
    LANGUAGE sql STRICT
1299
    AS $_$
1300
SELECT util.mk_const_col(($1, 'source'), util.table_schema($1))
1301
$_$;
1302

    
1303

    
1304
--
1305
-- Name: FUNCTION mk_source_col(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1306
--
1307

    
1308
COMMENT ON FUNCTION mk_source_col(table_ regclass) IS 'idempotent';
1309

    
1310

    
1311
--
1312
-- Name: mk_subset_by_row_num_func(regclass, text); Type: FUNCTION; Schema: util; Owner: -
1313
--
1314

    
1315
CREATE FUNCTION mk_subset_by_row_num_func(view_ regclass, row_num_col text) RETURNS void
1316
    LANGUAGE plpgsql STRICT
1317
    AS $_$
1318
BEGIN
1319
	EXECUTE $$
1320
CREATE OR REPLACE FUNCTION $$||view_||$$(limit_ integer DEFAULT NULL::integer, offset_ integer DEFAULT NULL)
1321
  RETURNS SETOF $$||view_||$$ AS
1322
$BODY1$
1323
SELECT * FROM $$||util.type_qual_name(view_::text::regtype)||$$
1324
WHERE $$||quote_ident(row_num_col)||$$ BETWEEN COALESCE($2, 0)+1 AND COALESCE(COALESCE($2, 0)+1 + $1 - 1, 2147483647)
1325
$BODY1$
1326
  LANGUAGE sql STABLE
1327
  COST 100
1328
  ROWS 1000
1329
$$;
1330
-- Also create subset function which turns off enable_sort
1331
	EXECUTE $$
1332
CREATE OR REPLACE FUNCTION $$||view_||$$(no_sort boolean, limit_ integer DEFAULT NULL::integer, offset_ integer DEFAULT NULL)
1333
  RETURNS SETOF $$||view_||$$
1334
  SET enable_sort TO 'off'
1335
  AS
1336
$BODY1$
1337
SELECT * FROM $$||util.type_qual_name(view_::text::regtype)||$$($2, $3)
1338
$BODY1$
1339
  LANGUAGE sql STABLE
1340
  COST 100
1341
  ROWS 1000
1342
;
1343
COMMENT ON FUNCTION $$||view_||$$(no_sort boolean, limit_ integer, offset_ integer) IS '
1344
Use this for limit values greater than ~100,000 to avoid unwanted slow sorts.
1345
If you want to run EXPLAIN and get expanded output, use the regular subset
1346
function instead. (When a config param is set on a function, EXPLAIN produces
1347
just a function scan.)
1348
';
1349
$$;
1350
END;
1351
$_$;
1352

    
1353

    
1354
--
1355
-- Name: name(regtype); Type: FUNCTION; Schema: util; Owner: -
1356
--
1357

    
1358
CREATE FUNCTION name(type regtype) RETURNS text
1359
    LANGUAGE sql STABLE STRICT
1360
    AS $_$
1361
SELECT typname::text FROM pg_type WHERE oid = $1
1362
$_$;
1363

    
1364

    
1365
--
1366
-- Name: not_empty(anyarray); Type: FUNCTION; Schema: util; Owner: -
1367
--
1368

    
1369
CREATE FUNCTION not_empty(value anyarray) RETURNS boolean
1370
    LANGUAGE sql IMMUTABLE
1371
    AS $_$
1372
SELECT $1 IS NOT NULL AND util.array_length($1) > 0
1373
$_$;
1374

    
1375

    
1376
--
1377
-- Name: not_null(anyelement); Type: FUNCTION; Schema: util; Owner: -
1378
--
1379

    
1380
CREATE FUNCTION not_null(value anyelement) RETURNS boolean
1381
    LANGUAGE sql IMMUTABLE
1382
    AS $_$
1383
SELECT $1 IS NOT NULL
1384
$_$;
1385

    
1386

    
1387
--
1388
-- Name: nulls_map(text[]); Type: FUNCTION; Schema: util; Owner: -
1389
--
1390

    
1391
CREATE FUNCTION nulls_map(nulls text[]) RETURNS hstore
1392
    LANGUAGE sql IMMUTABLE
1393
    AS $_$
1394
SELECT util.hstore($1, NULL) || '*=>*'
1395
$_$;
1396

    
1397

    
1398
--
1399
-- Name: FUNCTION nulls_map(nulls text[]); Type: COMMENT; Schema: util; Owner: -
1400
--
1401

    
1402
COMMENT ON FUNCTION nulls_map(nulls text[]) IS 'for use with _map()';
1403

    
1404

    
1405
--
1406
-- Name: raise_undefined_column(col_ref); Type: FUNCTION; Schema: util; Owner: -
1407
--
1408

    
1409
CREATE FUNCTION raise_undefined_column(col col_ref) RETURNS text
1410
    LANGUAGE plpgsql IMMUTABLE STRICT
1411
    AS $$
1412
BEGIN
1413
	RAISE undefined_column USING MESSAGE = concat('undefined column: ', col.name);
1414
END;
1415
$$;
1416

    
1417

    
1418
--
1419
-- Name: rename_cols(regclass, anyelement); Type: FUNCTION; Schema: util; Owner: -
1420
--
1421

    
1422
CREATE FUNCTION rename_cols(table_ regclass, renames anyelement) RETURNS void
1423
    LANGUAGE sql STRICT
1424
    AS $_$
1425
SELECT util.try_create($$ALTER TABLE $$||$1||$$ RENAME $$
1426
||quote_ident(name)||$$ TO $$||quote_ident($2 -> name))
1427
FROM util.col_names($1::text::regtype) f (name);
1428
SELECT NULL::void; -- don't fold away functions called in previous query
1429
$_$;
1430

    
1431

    
1432
--
1433
-- Name: FUNCTION rename_cols(table_ regclass, renames anyelement); Type: COMMENT; Schema: util; Owner: -
1434
--
1435

    
1436
COMMENT ON FUNCTION rename_cols(table_ regclass, renames anyelement) IS 'idempotent';
1437

    
1438

    
1439
--
1440
-- Name: reset_col_names(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
1441
--
1442

    
1443
CREATE FUNCTION reset_col_names(table_ regclass, names regclass) RETURNS void
1444
    LANGUAGE sql STRICT
1445
    AS $_$
1446
SELECT util.mk_derived_col(($2, 'to'), $$"from"$$, overwrite := true);
1447
SELECT util.set_col_names($1, $2);
1448
$_$;
1449

    
1450

    
1451
--
1452
-- Name: FUNCTION reset_col_names(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
1453
--
1454

    
1455
COMMENT ON FUNCTION reset_col_names(table_ regclass, names regclass) IS 'idempotent.
1456
alters the names table, so it will need to be repopulated after running this function.';
1457

    
1458

    
1459
--
1460
-- Name: reset_map_table(text); Type: FUNCTION; Schema: util; Owner: -
1461
--
1462

    
1463
CREATE FUNCTION reset_map_table(table_ text) RETURNS void
1464
    LANGUAGE sql STRICT
1465
    AS $_$
1466
SELECT util.drop_table($1);
1467
SELECT util.mk_map_table($1);
1468
$_$;
1469

    
1470

    
1471
--
1472
-- Name: search_path_append(text); Type: FUNCTION; Schema: util; Owner: -
1473
--
1474

    
1475
CREATE FUNCTION search_path_append(schemas text) RETURNS void
1476
    LANGUAGE sql STRICT
1477
    AS $_$
1478
SELECT util.eval(
1479
$$SET search_path TO $$||current_setting('search_path')||$$, $$||$1);
1480
$_$;
1481

    
1482

    
1483
--
1484
-- Name: set_col_names(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
1485
--
1486

    
1487
CREATE FUNCTION set_col_names(table_ regclass, names regclass) RETURNS void
1488
    LANGUAGE plpgsql STRICT
1489
    AS $_$
1490
DECLARE
1491
    old text[] = ARRAY(SELECT util.col_names(table_));
1492
    new text[] = ARRAY(SELECT util.map_values(names));
1493
BEGIN
1494
    old = old[1:array_length(new, 1)]; -- truncate to same length
1495
    PERFORM util.eval($$ALTER TABLE $$||$1||$$ RENAME $$||quote_ident(key)
1496
||$$ TO $$||quote_ident(value))
1497
    FROM each(hstore(old, new))
1498
    WHERE value != key -- not same name
1499
    ;
1500
END;
1501
$_$;
1502

    
1503

    
1504
--
1505
-- Name: FUNCTION set_col_names(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
1506
--
1507

    
1508
COMMENT ON FUNCTION set_col_names(table_ regclass, names regclass) IS 'idempotent';
1509

    
1510

    
1511
--
1512
-- Name: set_col_names_with_metadata(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
1513
--
1514

    
1515
CREATE FUNCTION set_col_names_with_metadata(table_ regclass, names regclass) RETURNS void
1516
    LANGUAGE plpgsql STRICT
1517
    AS $_$
1518
DECLARE
1519
	row_ util.map;
1520
BEGIN
1521
	FOR row_ IN EXECUTE $$SELECT * FROM $$||names||$$ WHERE "from" LIKE ':%'$$
1522
	LOOP
1523
		PERFORM util.mk_const_col((table_, row_."to"),
1524
			substring(row_."from" from 2));
1525
	END LOOP;
1526
	
1527
	PERFORM util.set_col_names(table_, names);
1528
END;
1529
$_$;
1530

    
1531

    
1532
--
1533
-- Name: FUNCTION set_col_names_with_metadata(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
1534
--
1535

    
1536
COMMENT ON FUNCTION set_col_names_with_metadata(table_ regclass, names regclass) IS 'idempotent.
1537
the metadata mappings must be *last* in the names table.';
1538

    
1539

    
1540
--
1541
-- Name: set_col_types(regclass, col_cast[]); Type: FUNCTION; Schema: util; Owner: -
1542
--
1543

    
1544
CREATE FUNCTION set_col_types(table_ regclass, col_casts col_cast[]) RETURNS void
1545
    LANGUAGE plpgsql STRICT
1546
    AS $_$
1547
DECLARE
1548
    sql text = $$ALTER TABLE $$||table_||$$
1549
$$||NULLIF(array_to_string(ARRAY(
1550
    SELECT
1551
    $$ALTER COLUMN $$||col_name_sql||$$ TYPE $$||target_type
1552
    ||$$ USING $$||col_name_sql||$$::$$||target_type
1553
    FROM
1554
    (
1555
        SELECT
1556
          quote_ident(col_name) AS col_name_sql
1557
        , util.col_type((table_, col_name)) AS curr_type
1558
        , type AS target_type
1559
        FROM unnest(col_casts)
1560
    ) s
1561
    WHERE curr_type != target_type
1562
), '
1563
, '), '');
1564
BEGIN
1565
    RAISE NOTICE '%', sql;
1566
    EXECUTE COALESCE(sql, '');
1567
END;
1568
$_$;
1569

    
1570

    
1571
--
1572
-- Name: FUNCTION set_col_types(table_ regclass, col_casts col_cast[]); Type: COMMENT; Schema: util; Owner: -
1573
--
1574

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

    
1577

    
1578
--
1579
-- Name: table2hstore(regclass); Type: FUNCTION; Schema: util; Owner: -
1580
--
1581

    
1582
CREATE FUNCTION table2hstore(table_ regclass) RETURNS hstore
1583
    LANGUAGE plpgsql STABLE STRICT
1584
    AS $_$
1585
DECLARE
1586
    hstore hstore;
1587
BEGIN
1588
    EXECUTE $$SELECT hstore(ARRAY(SELECT unnest(ARRAY["from", "to"]) FROM $$||
1589
        table_||$$))$$ INTO STRICT hstore;
1590
    RETURN hstore;
1591
END;
1592
$_$;
1593

    
1594

    
1595
--
1596
-- Name: table_flag__get(regclass, text); Type: FUNCTION; Schema: util; Owner: -
1597
--
1598

    
1599
CREATE FUNCTION table_flag__get(table_ regclass, flag text) RETURNS boolean
1600
    LANGUAGE sql STABLE STRICT
1601
    AS $_$
1602
SELECT COUNT(*) > 0 FROM pg_constraint
1603
WHERE conrelid = $1 AND contype = 'c' AND conname = $2
1604
$_$;
1605

    
1606

    
1607
--
1608
-- Name: FUNCTION table_flag__get(table_ regclass, flag text); Type: COMMENT; Schema: util; Owner: -
1609
--
1610

    
1611
COMMENT ON FUNCTION table_flag__get(table_ regclass, flag text) IS 'gets whether a status flag is set by the presence of a table constraint';
1612

    
1613

    
1614
--
1615
-- Name: table_flag__set(regclass, text); Type: FUNCTION; Schema: util; Owner: -
1616
--
1617

    
1618
CREATE FUNCTION table_flag__set(table_ regclass, flag text) RETURNS void
1619
    LANGUAGE sql STRICT
1620
    AS $_$
1621
SELECT util.create_if_not_exists($$ALTER TABLE $$||$1||$$ ADD CONSTRAINT $$
1622
||quote_ident($2)||$$ CHECK (true)$$)
1623
$_$;
1624

    
1625

    
1626
--
1627
-- Name: FUNCTION table_flag__set(table_ regclass, flag text); Type: COMMENT; Schema: util; Owner: -
1628
--
1629

    
1630
COMMENT ON FUNCTION table_flag__set(table_ regclass, flag text) IS 'stores a status flag by the presence of a table constraint.
1631
idempotent.';
1632

    
1633

    
1634
--
1635
-- Name: table_nulls_mapped__get(regclass); Type: FUNCTION; Schema: util; Owner: -
1636
--
1637

    
1638
CREATE FUNCTION table_nulls_mapped__get(table_ regclass) RETURNS boolean
1639
    LANGUAGE sql STABLE STRICT
1640
    AS $_$
1641
SELECT util.table_flag__get($1, 'nulls_mapped')
1642
$_$;
1643

    
1644

    
1645
--
1646
-- Name: FUNCTION table_nulls_mapped__get(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1647
--
1648

    
1649
COMMENT ON FUNCTION table_nulls_mapped__get(table_ regclass) IS 'gets whether a table''s NULL-equivalent strings have been replaced with NULL';
1650

    
1651

    
1652
--
1653
-- Name: table_nulls_mapped__set(regclass); Type: FUNCTION; Schema: util; Owner: -
1654
--
1655

    
1656
CREATE FUNCTION table_nulls_mapped__set(table_ regclass) RETURNS void
1657
    LANGUAGE sql STRICT
1658
    AS $_$
1659
SELECT util.table_flag__set($1, 'nulls_mapped')
1660
$_$;
1661

    
1662

    
1663
--
1664
-- Name: FUNCTION table_nulls_mapped__set(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1665
--
1666

    
1667
COMMENT ON FUNCTION table_nulls_mapped__set(table_ regclass) IS 'sets that a table''s NULL-equivalent strings have been replaced with NULL.
1668
idempotent.';
1669

    
1670

    
1671
--
1672
-- Name: table_schema(regclass); Type: FUNCTION; Schema: util; Owner: -
1673
--
1674

    
1675
CREATE FUNCTION table_schema(table_ regclass) RETURNS text
1676
    LANGUAGE sql STABLE STRICT
1677
    AS $_$
1678
SELECT nspname::text FROM pg_namespace WHERE oid = (SELECT relnamespace FROM pg_class WHERE oid = $1)
1679
$_$;
1680

    
1681

    
1682
--
1683
-- Name: to_global_col_names(regclass); Type: FUNCTION; Schema: util; Owner: -
1684
--
1685

    
1686
CREATE FUNCTION to_global_col_names(table_ regclass) RETURNS void
1687
    LANGUAGE plpgsql STRICT
1688
    AS $_$
1689
DECLARE
1690
    row record;
1691
BEGIN
1692
    FOR row IN SELECT * FROM util.col_global_names(table_::text::regtype)
1693
    LOOP
1694
        IF row.global_name != row.name THEN
1695
            EXECUTE $$ALTER TABLE $$||table_||$$ RENAME $$
1696
                ||quote_ident(row.name)||$$ TO $$||quote_ident(row.global_name);
1697
        END IF;
1698
    END LOOP;
1699
END;
1700
$_$;
1701

    
1702

    
1703
--
1704
-- Name: FUNCTION to_global_col_names(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1705
--
1706

    
1707
COMMENT ON FUNCTION to_global_col_names(table_ regclass) IS 'idempotent';
1708

    
1709

    
1710
--
1711
-- Name: trim(regclass, regclass); Type: FUNCTION; Schema: util; Owner: -
1712
--
1713

    
1714
CREATE FUNCTION "trim"(table_ regclass, names regclass) RETURNS void
1715
    LANGUAGE sql STRICT
1716
    AS $_$
1717
SELECT util.drop_column(($1, col)) FROM util.derived_cols($1, $2) f (col);
1718
SELECT NULL::void; -- don't fold away functions called in previous query
1719
$_$;
1720

    
1721

    
1722
--
1723
-- Name: FUNCTION "trim"(table_ regclass, names regclass); Type: COMMENT; Schema: util; Owner: -
1724
--
1725

    
1726
COMMENT ON FUNCTION "trim"(table_ regclass, names regclass) IS 'trims table_ to include only original columns, as defined by the names table.
1727
idempotent.';
1728

    
1729

    
1730
--
1731
-- Name: truncate(regclass); Type: FUNCTION; Schema: util; Owner: -
1732
--
1733

    
1734
CREATE FUNCTION truncate(table_ regclass) RETURNS void
1735
    LANGUAGE plpgsql STRICT
1736
    AS $_$
1737
BEGIN
1738
    EXECUTE $$TRUNCATE $$||table_||$$ CASCADE$$;
1739
END;
1740
$_$;
1741

    
1742

    
1743
--
1744
-- Name: FUNCTION truncate(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1745
--
1746

    
1747
COMMENT ON FUNCTION truncate(table_ regclass) IS 'idempotent';
1748

    
1749

    
1750
--
1751
-- Name: try_create(text); Type: FUNCTION; Schema: util; Owner: -
1752
--
1753

    
1754
CREATE FUNCTION try_create(sql text) RETURNS void
1755
    LANGUAGE plpgsql STRICT
1756
    AS $$
1757
BEGIN
1758
    PERFORM util.eval(sql);
1759
EXCEPTION
1760
    WHEN wrong_object_type THEN NULL; -- trying to alter a view's columns
1761
    WHEN undefined_column THEN NULL;
1762
    WHEN duplicate_column THEN NULL;
1763
END;
1764
$$;
1765

    
1766

    
1767
--
1768
-- Name: FUNCTION try_create(sql text); Type: COMMENT; Schema: util; Owner: -
1769
--
1770

    
1771
COMMENT ON FUNCTION try_create(sql text) IS 'idempotent';
1772

    
1773

    
1774
--
1775
-- Name: try_mk_derived_col(col_ref, text); Type: FUNCTION; Schema: util; Owner: -
1776
--
1777

    
1778
CREATE FUNCTION try_mk_derived_col(col col_ref, expr text) RETURNS void
1779
    LANGUAGE sql STRICT
1780
    AS $_$
1781
SELECT util.try_create($$SELECT util.mk_derived_col($$||quote_literal($1)||$$, $$||quote_literal($2)||$$)$$)
1782
$_$;
1783

    
1784

    
1785
--
1786
-- Name: FUNCTION try_mk_derived_col(col col_ref, expr text); Type: COMMENT; Schema: util; Owner: -
1787
--
1788

    
1789
COMMENT ON FUNCTION try_mk_derived_col(col col_ref, expr text) IS 'idempotent';
1790

    
1791

    
1792
--
1793
-- Name: type_qual(anyelement); Type: FUNCTION; Schema: util; Owner: -
1794
--
1795

    
1796
CREATE FUNCTION type_qual(value anyelement) RETURNS text
1797
    LANGUAGE sql IMMUTABLE
1798
    AS $_$
1799
SELECT CASE WHEN $1 IS NULL THEN '' ELSE $$ NOT NULL$$ END
1800
$_$;
1801

    
1802

    
1803
--
1804
-- Name: FUNCTION type_qual(value anyelement); Type: COMMENT; Schema: util; Owner: -
1805
--
1806

    
1807
COMMENT ON FUNCTION type_qual(value anyelement) IS 'a type''s NOT NULL qualifier';
1808

    
1809

    
1810
--
1811
-- Name: type_qual_name(regtype); Type: FUNCTION; Schema: util; Owner: -
1812
--
1813

    
1814
CREATE FUNCTION type_qual_name(type regtype) RETURNS text
1815
    LANGUAGE sql STABLE STRICT
1816
    SET search_path TO pg_temp
1817
    AS $_$
1818
SELECT $1::text
1819
$_$;
1820

    
1821

    
1822
--
1823
-- Name: FUNCTION type_qual_name(type regtype); Type: COMMENT; Schema: util; Owner: -
1824
--
1825

    
1826
COMMENT ON FUNCTION type_qual_name(type regtype) IS 'a type''s schema-qualified name';
1827

    
1828

    
1829
--
1830
-- Name: typeof(text, regtype); Type: FUNCTION; Schema: util; Owner: -
1831
--
1832

    
1833
CREATE FUNCTION typeof(expr text, table_ regtype DEFAULT NULL::regtype) RETURNS regtype
1834
    LANGUAGE plpgsql STABLE
1835
    AS $_$
1836
DECLARE
1837
    type regtype;
1838
BEGIN
1839
    EXECUTE $$SELECT pg_typeof($$||expr||$$)$$||
1840
COALESCE($$ FROM (SELECT (NULL::$$||table_||$$).*) _s$$, '') INTO STRICT type;
1841
    RETURN type;
1842
END;
1843
$_$;
1844

    
1845

    
1846
--
1847
-- Name: all_same(anyelement); Type: AGGREGATE; Schema: util; Owner: -
1848
--
1849

    
1850
CREATE AGGREGATE all_same(anyelement) (
1851
    SFUNC = all_same_transform,
1852
    STYPE = anyarray,
1853
    FINALFUNC = all_same_final
1854
);
1855

    
1856

    
1857
--
1858
-- Name: AGGREGATE all_same(anyelement); Type: COMMENT; Schema: util; Owner: -
1859
--
1860

    
1861
COMMENT ON AGGREGATE all_same(anyelement) IS 'includes NULLs in comparison';
1862

    
1863

    
1864
--
1865
-- Name: join_strs(text, text); Type: AGGREGATE; Schema: util; Owner: -
1866
--
1867

    
1868
CREATE AGGREGATE join_strs(text, text) (
1869
    SFUNC = join_strs_transform,
1870
    STYPE = text
1871
);
1872

    
1873

    
1874
--
1875
-- Name: ->; Type: OPERATOR; Schema: util; Owner: -
1876
--
1877

    
1878
CREATE OPERATOR -> (
1879
    PROCEDURE = map_get,
1880
    LEFTARG = regclass,
1881
    RIGHTARG = text
1882
);
1883

    
1884

    
1885
--
1886
-- Name: =>; Type: OPERATOR; Schema: util; Owner: -
1887
--
1888

    
1889
CREATE OPERATOR => (
1890
    PROCEDURE = hstore,
1891
    LEFTARG = text[],
1892
    RIGHTARG = anyelement
1893
);
1894

    
1895

    
1896
--
1897
-- Name: OPERATOR => (text[], anyelement); Type: COMMENT; Schema: util; Owner: -
1898
--
1899

    
1900
COMMENT ON OPERATOR => (text[], anyelement) IS 'usage: array[''key1'', ...]::text[] => ''value''';
1901

    
1902

    
1903
SET default_tablespace = '';
1904

    
1905
SET default_with_oids = false;
1906

    
1907
--
1908
-- Name: map; Type: TABLE; Schema: util; Owner: -; Tablespace: 
1909
--
1910

    
1911
CREATE TABLE map (
1912
    "from" text NOT NULL,
1913
    "to" text,
1914
    filter text,
1915
    notes text
1916
);
1917

    
1918

    
1919
--
1920
-- Data for Name: map; Type: TABLE DATA; Schema: util; Owner: -
1921
--
1922

    
1923

    
1924

    
1925
--
1926
-- Name: map__unique__from; Type: CONSTRAINT; Schema: util; Owner: -; Tablespace: 
1927
--
1928

    
1929
ALTER TABLE ONLY map
1930
    ADD CONSTRAINT map__unique__from UNIQUE ("from");
1931

    
1932

    
1933
--
1934
-- Name: map__unique__to; Type: CONSTRAINT; Schema: util; Owner: -; Tablespace: 
1935
--
1936

    
1937
ALTER TABLE ONLY map
1938
    ADD CONSTRAINT map__unique__to UNIQUE ("to");
1939

    
1940

    
1941
--
1942
-- Name: map_filter_insert; Type: TRIGGER; Schema: util; Owner: -
1943
--
1944

    
1945
CREATE TRIGGER map_filter_insert BEFORE INSERT ON map FOR EACH ROW EXECUTE PROCEDURE map_filter_insert();
1946

    
1947

    
1948
--
1949
-- PostgreSQL database dump complete
1950
--
1951

    
(17-17/27)