1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Remove old, broken code for query_limit(), assert_enable(),

assert_test() functions --- these weren't accomplishing much except to
render the whole module un-loadable ...
This commit is contained in:
Tom Lane
2000-11-22 19:34:49 +00:00
parent dc3fb8b152
commit 89345945d9
4 changed files with 4 additions and 86 deletions

View File

@ -7,12 +7,6 @@
-- This file is distributed under the GNU General Public License
-- either version 2, or (at your option) any later version.
-- Set the maximum number of tuples returned by a single query.
--
create function query_limit(int4) returns int4
as 'MODULE_PATHNAME'
language 'C';
-- Return the pid of the backend.
--
create function backend_pid() returns int4
@ -49,16 +43,4 @@ create function active_listeners(text) returns int4
as 'MODULE_PATHNAME'
language 'C';
-- Enable/disable Postgres assert checking.
--
create function assert_enable(int4) returns int4
as 'MODULE_PATHNAME'
language 'C';
-- Test Postgres assert checking.
--
-- create function assert_test(int4) returns int4
-- as 'MODULE_PATHNAME'
-- language 'C';
-- end of file