1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +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

@ -4,13 +4,6 @@ Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
query_limit(n)
sets a limit on the maximum numbers of query returned from
a backend. It can be used to limit the result size retrieved
by the application for poor input data or to avoid accidental
table product while playying with sql.
backend_pid()
return the pid of our corresponding backend.
@ -27,17 +20,7 @@ unlisten(relname)
min(x,y)
max(x,y)
return the min or max bteween two integers.
assert_enable(bool)
enable/disable assert checkings in the backend, if it has been
compiled with USE_ASSERT_CHECKING.
assert_test(bool)
test the assert enable/disable code, if the backend has been
compiled with ASSERT_CHECKING_TEST.
return the min or max of two integers.
--
Massimo Dal Zotto <dz@cs.unitn.it>