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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION plpgsql_check" to load this file. \quit
CREATE FUNCTION plpgsql_check_function_tb(funcoid regprocedure,
relid regclass DEFAULT 0,
fatal_errors boolean DEFAULT true,
other_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false,
extra_warnings boolean DEFAULT true,
security_warnings boolean DEFAULT false,
compatibility_warnings boolean DEFAULT false,
oldtable name DEFAULT null,
newtable name DEFAULT null,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range',
without_warnings boolean DEFAULT false,
all_warnings boolean DEFAULT false,
use_incomment_options boolean DEFAULT true,
incomment_options_usage_warning boolean DEFAULT false,
constant_tracing boolean DEFAULT true)
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;
CREATE FUNCTION plpgsql_check_function(funcoid regprocedure,
relid regclass DEFAULT 0,
format text DEFAULT 'text',
fatal_errors boolean DEFAULT true,
other_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false,
extra_warnings boolean DEFAULT true,
security_warnings boolean DEFAULT false,
compatibility_warnings boolean DEFAULT false,
oldtable name DEFAULT null,
newtable name DEFAULT null,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range',
without_warnings boolean DEFAULT false,
all_warnings boolean DEFAULT false,
use_incomment_options boolean DEFAULT true,
incomment_options_usage_warning boolean DEFAULT false,
constant_tracing boolean DEFAULT true)
RETURNS SETOF text
AS 'MODULE_PATHNAME','plpgsql_check_function'
LANGUAGE C;
CREATE FUNCTION plpgsql_check_function_tb(name text,
relid regclass DEFAULT 0,
fatal_errors boolean DEFAULT true,
other_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false,
extra_warnings boolean DEFAULT true,
security_warnings boolean DEFAULT false,
compatibility_warnings boolean DEFAULT false,
oldtable name DEFAULT null,
newtable name DEFAULT null,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range',
without_warnings boolean DEFAULT false,
all_warnings boolean DEFAULT false,
use_incomment_options boolean DEFAULT true,
incomment_options_usage_warning boolean DEFAULT false,
constant_tracing boolean DEFAULT true)
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_name'
LANGUAGE C;
CREATE FUNCTION plpgsql_check_function(name text,
relid regclass DEFAULT 0,
format text DEFAULT 'text',
fatal_errors boolean DEFAULT true,
other_warnings boolean DEFAULT true,
performance_warnings boolean DEFAULT false,
extra_warnings boolean DEFAULT true,
security_warnings boolean DEFAULT false,
compatibility_warnings boolean DEFAULT false,
oldtable name DEFAULT null,
newtable name DEFAULT null,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range',
without_warnings boolean DEFAULT false,
all_warnings boolean DEFAULT false,
use_incomment_options boolean DEFAULT true,
incomment_options_usage_warning boolean DEFAULT false,
constant_tracing boolean DEFAULT true)
RETURNS SETOF text
AS 'MODULE_PATHNAME','plpgsql_check_function_name'
LANGUAGE C;
CREATE FUNCTION __plpgsql_show_dependency_tb(funcoid regprocedure,
relid regclass DEFAULT 0,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range')
RETURNS TABLE(type text,
oid oid,
schema text,
name text,
params text)
AS 'MODULE_PATHNAME','plpgsql_show_dependency_tb'
LANGUAGE C;
CREATE FUNCTION __plpgsql_show_dependency_tb(name text,
relid regclass DEFAULT 0,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range')
RETURNS TABLE(type text,
oid oid,
schema text,
name text,
params text)
AS 'MODULE_PATHNAME','plpgsql_show_dependency_tb_name'
LANGUAGE C;
CREATE FUNCTION plpgsql_show_dependency_tb(funcoid regprocedure,
relid regclass DEFAULT 0,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range')
RETURNS TABLE(type text,
oid oid,
schema text,
name text,
params text)
AS $$
SELECT *
FROM @extschema@.__plpgsql_show_dependency_tb($1, $2, $3, $4, $5, $6, $7)
ORDER BY 1, 3, 4;
$$ LANGUAGE sql;
CREATE FUNCTION plpgsql_show_dependency_tb(fnname text,
relid regclass DEFAULT 0,
anyelememttype regtype DEFAULT 'int',
anyenumtype regtype DEFAULT '-',
anyrangetype regtype DEFAULT 'int4range',
anycompatibletype regtype DEFAULT 'int',
anycompatiblerangetype regtype DEFAULT 'int4range')
RETURNS TABLE(type text,
oid oid,
schema text,
name text,
params text)
AS $$
SELECT *
FROM @extschema@.__plpgsql_show_dependency_tb($1, $2, $3, $4, $5, $6, $7)
ORDER BY 1, 3, 4;
$$ LANGUAGE sql;
CREATE FUNCTION plpgsql_profiler_function_tb(funcoid regprocedure)
RETURNS TABLE(lineno int,
stmt_lineno int,
queryids int8[],
cmds_on_row int,
exec_stmts int8,
exec_stmts_err int8,
total_time double precision,
avg_time double precision,
max_time double precision[],
processed_rows int8[],
source text)
AS 'MODULE_PATHNAME','plpgsql_profiler_function_tb'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_function_tb(name text)
RETURNS TABLE(lineno int,
stmt_lineno int,
queryids int8[],
cmds_on_row int,
exec_stmts int8,
exec_stmts_err int8,
total_time double precision,
avg_time double precision,
max_time double precision[],
processed_rows int8[],
source text)
AS 'MODULE_PATHNAME','plpgsql_profiler_function_tb_name'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_function_statements_tb(funcoid regprocedure)
RETURNS TABLE(stmtid int,
parent_stmtid int,
parent_note text,
block_num int,
lineno int,
queryid int8,
exec_stmts int8,
exec_stmts_err int8,
total_time double precision,
avg_time double precision,
max_time double precision,
processed_rows int8,
stmtname text)
AS 'MODULE_PATHNAME','plpgsql_profiler_function_statements_tb'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_function_statements_tb(name text)
RETURNS TABLE(stmtid int,
parent_stmtid int,
parent_note text,
block_num int,
lineno int,
queryid int8,
exec_stmts int8,
exec_stmts_err int8,
total_time double precision,
avg_time double precision,
max_time double precision,
processed_rows int8,
stmtname text)
AS 'MODULE_PATHNAME','plpgsql_profiler_function_statements_tb_name'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_install_fake_queryid_hook()
RETURNS void AS 'MODULE_PATHNAME','plpgsql_profiler_install_fake_queryid_hook'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_remove_fake_queryid_hook()
RETURNS void AS 'MODULE_PATHNAME','plpgsql_profiler_remove_fake_queryid_hook'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_reset_all()
RETURNS void AS 'MODULE_PATHNAME','plpgsql_profiler_reset_all'
LANGUAGE C STRICT;
CREATE FUNCTION plpgsql_profiler_reset(funcoid regprocedure)
RETURNS void AS 'MODULE_PATHNAME','plpgsql_profiler_reset'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION plpgsql_coverage_statements(funcoid regprocedure)
RETURNS double precision AS 'MODULE_PATHNAME', 'plpgsql_coverage_statements'
LANGUAGE C;
CREATE OR REPLACE FUNCTION plpgsql_coverage_statements(name text)
RETURNS double precision AS 'MODULE_PATHNAME', 'plpgsql_coverage_statements_name'
LANGUAGE C;
CREATE OR REPLACE FUNCTION plpgsql_coverage_branches(funcoid regprocedure)
RETURNS double precision AS 'MODULE_PATHNAME', 'plpgsql_coverage_branches'
LANGUAGE C;
CREATE OR REPLACE FUNCTION plpgsql_coverage_branches(name text)
RETURNS double precision AS 'MODULE_PATHNAME', 'plpgsql_coverage_branches_name'
LANGUAGE C;
CREATE OR REPLACE FUNCTION plpgsql_check_pragma(VARIADIC name text[])
RETURNS integer AS 'MODULE_PATHNAME', 'plpgsql_check_pragma'
LANGUAGE C VOLATILE;
CREATE OR REPLACE FUNCTION plpgsql_profiler_functions_all()
RETURNS TABLE(funcoid regprocedure,
exec_count int8,
exec_stmts_err int8,
total_time double precision,
avg_time double precision,
stddev_time double precision,
min_time double precision,
max_time double precision)
AS 'MODULE_PATHNAME','plpgsql_profiler_functions_all_tb'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION plpgsql_check_profiler(enable boolean DEFAULT NULL)
RETURNS boolean AS 'MODULE_PATHNAME', 'plpgsql_check_profiler_ctrl'
LANGUAGE C VOLATILE;
CREATE OR REPLACE FUNCTION plpgsql_check_tracer(enable boolean DEFAULT NULL, verbosity text DEFAULT NULL)
RETURNS boolean AS 'MODULE_PATHNAME', 'plpgsql_check_tracer_ctrl'
LANGUAGE C VOLATILE;
|