summaryrefslogtreecommitdiff
path: root/contrib/miscutil
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-06-19 13:54:50 +0000
committerBruce Momjian <bruce@momjian.us>2000-06-19 13:54:50 +0000
commit6de7d4fe91b1f037eb9ad612a22e972037426100 (patch)
tree1661370f02a7ce6aa212a35b15d35f344faccad1 /contrib/miscutil
parentb2c56574e1a83d4f71f72f9243423eeddbdbbe20 (diff)
downloadpostgresql-6de7d4fe91b1f037eb9ad612a22e972037426100.tar.gz
Update to /contrib from Karel.
Diffstat (limited to 'contrib/miscutil')
-rw-r--r--contrib/miscutil/Makefile6
-rw-r--r--contrib/miscutil/README43
2 files changed, 3 insertions, 46 deletions
diff --git a/contrib/miscutil/Makefile b/contrib/miscutil/Makefile
index 313772640d..42a1185531 100644
--- a/contrib/miscutil/Makefile
+++ b/contrib/miscutil/Makefile
@@ -1,5 +1,5 @@
#
-# $Header: /cvsroot/pgsql/contrib/miscutil/Attic/Makefile,v 1.9 2000/06/16 18:58:55 momjian Exp $
+# $Header: /cvsroot/pgsql/contrib/miscutil/Attic/Makefile,v 1.10 2000/06/19 13:53:47 momjian Exp $
#
TOPDIR=../..
@@ -10,7 +10,7 @@ NAME = misc_utils
PROGRAM =
OBJS = $(NAME).o
-DOCS = README
+DOCS = README.$(NAME)
SQLS = $(NAME).sql
BINS =
EXAMPLES=
@@ -29,7 +29,7 @@ install: install_doc install_sql install_mod
install_doc:
for inst_file in $(DOCS); do \
- $(INSTALL) $(INSTL_LIB_OPTS) $$inst_file $(CONTRIB_DOCDIR)/$(DOCS).$(NAME); \
+ $(INSTALL) $(INSTL_LIB_OPTS) $$inst_file $(CONTRIB_DOCDIR); \
done
install_sql:
diff --git a/contrib/miscutil/README b/contrib/miscutil/README
index 903455513a..e69de29bb2 100644
--- a/contrib/miscutil/README
+++ b/contrib/miscutil/README
@@ -1,43 +0,0 @@
-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>