diff options
| author | Bruce Momjian <bruce@momjian.us> | 2000-06-19 14:02:16 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2000-06-19 14:02:16 +0000 |
| commit | bad9ce7099c2d4154dbd787f34a3a3a3a405e4e1 (patch) | |
| tree | 065921cc0aaff8e2a8ede19d40850c7fbd0b72ed /contrib/miscutil | |
| parent | 6de7d4fe91b1f037eb9ad612a22e972037426100 (diff) | |
Add missing /contrib files
Diffstat (limited to 'contrib/miscutil')
| -rw-r--r-- | contrib/miscutil/README.misc_utils | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/contrib/miscutil/README.misc_utils b/contrib/miscutil/README.misc_utils new file mode 100644 index 00000000000..903455513a2 --- /dev/null +++ b/contrib/miscutil/README.misc_utils @@ -0,0 +1,43 @@ +Miscellaneous utility functions for PostgreSQL. +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. + +unlisten(relname) + + unlisten from a relation or from all relations if the argument + is null, empty or '*'. + It is now obsoleted by the new unlisten command but still useful + if you want unlisten a name computed by the query. + Note that a listen/notify relname can be any ascii string, not + just valid relation names. + +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. + +-- +Massimo Dal Zotto <dz@cs.unitn.it> |
