-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathPGUnitDrop.sql
More file actions
21 lines (21 loc) · 901 Bytes
/
PGUnitDrop.sql
File metadata and controls
21 lines (21 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--
-- Clears the PG Unit functions
--
--
drop function test_run_suite(TEXT);
drop function test_run_all();
drop function test_run_condition(proc_name text);
drop function test_build_procname(parts text[], p_from integer, p_to integer);
drop function test_get_procname(test_case_name text, expected_name_count integer, result_prefix text);
drop function test_terminate(db VARCHAR);
drop function test_autonomous(p_statement VARCHAR);
drop function test_dblink_connect(text, text);
drop function test_dblink_disconnect(text);
drop function test_dblink_exec(text, text);
drop function test_detect_dblink_schema();
drop function test_assertTrue(message VARCHAR, condition BOOLEAN);
drop function test_assertTrue(condition BOOLEAN);
drop function test_assertNotNull(VARCHAR, ANYELEMENT);
drop function test_assertNull(VARCHAR, ANYELEMENT);
drop function test_fail(VARCHAR);
drop type test_results cascade;