summaryrefslogtreecommitdiff
path: root/contrib/dbsize/README.dbsize
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/dbsize/README.dbsize')
-rw-r--r--contrib/dbsize/README.dbsize11
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/dbsize/README.dbsize b/contrib/dbsize/README.dbsize
deleted file mode 100644
index 879341cd02e..00000000000
--- a/contrib/dbsize/README.dbsize
+++ /dev/null
@@ -1,11 +0,0 @@
-This module contains two functions that report the size of a given
-database or relation. E.g.,
-
-SELECT database_size('template1');
-SELECT relation_size('pg_class');
-
-These functions report the actual file system space. Thus, users can
-avoid digging through the details of the database directories.
-
-Copy this directory to contrib/dbsize in your PostgreSQL source tree.
-Then just run make; make install.