forked from okbob/plpgsql_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plpgsql_check--1.0--1.1.sql
83 lines (77 loc) · 3.38 KB
/
plpgsql_check--1.0--1.1.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
LOAD 'plpgsql';
DROP FUNCTION plpgsql_check_function_tb(funcoid regprocedure,
relid regclass,
fatal_errors boolean,
others_warnings boolean,
performance_warnings boolean);
DROP FUNCTION plpgsql_check_function(funcoid regprocedure,
relid regclass,
format text,
fatal_errors boolean,
others_warnings boolean,
performance_warnings boolean);
CREATE FUNCTION __plpgsql_check_function_tb(funcoid regprocedure,
relid regclass,
fatal_errors boolean,
others_warnings boolean,
performance_warnings boolean)
RETURNS TABLE(functionid regproc,
lineno int,
statement text,
sqlstate text,
message text,
detail text,
hint text,
level text,
"position" int,
query text,
context text)
AS 'MODULE_PATHNAME','plpgsql_check_function_tb'
LANGUAGE C STRICT;
CREATE FUNCTION __plpgsql_check_function(funcoid regprocedure,
relid regclass,
format text,
fatal_errors boolean,
others_warnings boolean,
performance_warnings boolean)
RETURNS SETOF text
AS 'MODULE_PATHNAME','plpgsql_check_function'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_check_function_tb(funcoid regprocedure,
relid regclass DEFAULT 0,
fatal_errors boolean DEFAULT true,
others_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false)
RETURNS TABLE(functionid regproc,
lineno int,
statement text,
sqlstate text,
message text,
detail text,
hint text,
level text,
"position" int,
query text,
context text)
AS $$
BEGIN
RETURN QUERY SELECT * FROM @extschema@.__plpgsql_check_function_tb(funcoid, relid,
fatal_errors, others_warnings, performance_warnings);
RETURN;
END;
$$ LANGUAGE plpgsql STRICT;
CREATE FUNCTION plpgsql_check_function(funcoid regprocedure,
relid regclass DEFAULT 0,
format text DEFAULT 'text',
fatal_errors boolean DEFAULT true,
others_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false)
RETURNS SETOF text
AS $$
BEGIN
RETURN QUERY SELECT s FROM @extschema@.__plpgsql_check_function(funcoid, relid,
format, fatal_errors, others_warnings,
performance_warnings) g(s);
RETURN;
END;
$$ LANGUAGE plpgsql STRICT;