Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 85f6e27

Browse files
committed
Add /contrib/adminpack to contrib/Makefile, do case-folding change.
1 parent 26cfefa commit 85f6e27

File tree

3 files changed

+50
-49
lines changed

3 files changed

+50
-49
lines changed

contrib/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# $PostgreSQL: pgsql/contrib/Makefile,v 1.65 2006/04/23 02:17:59 ishii Exp $
1+
# $PostgreSQL: pgsql/contrib/Makefile,v 1.66 2006/05/30 13:25:57 momjian Exp $
22

33
subdir = contrib
44
top_builddir = ..
55
include $(top_builddir)/src/Makefile.global
66

77
WANTED_DIRS = \
8+
adminpack \
89
btree_gist \
910
chkpass \
1011
cube \

contrib/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ adddepend -
2929
by Rod Taylor <rbt@rbt.ca>
3030

3131
adminpack -
32-
File and log manipulation routines, used by Pgadmin
32+
File and log manipulation routines, used by pgAdmin
3333
by From: Dave Page <dpage@vale-housing.co.uk>
3434

3535
btree_gist -

contrib/adminpack/README.adminpack

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
PostgreSQL Administration Functions
2-
===================================
3-
4-
This directory is a PostgreSQL 'contrib' module which implements a number of
5-
support functions which pgAdmin and other administration and management tools
6-
can use to provide additional functionality if installed on a server.
7-
8-
Installation
9-
============
10-
11-
This module is normally distributed as a PostgreSQL 'contrib' module. To
12-
install it from a pre-configured source tree run the following commands
13-
as a user with appropriate privileges from the adminpack source directory:
14-
15-
make
16-
make install
17-
18-
Alternatively, if you have a PostgreSQL 8.2 or higher installation but no
19-
source tree you can install using PGXS. Simply run the following commands the
20-
adminpack source directory:
21-
22-
make USE_PGXS=1
23-
make USE_PGXS=1 install
24-
25-
pgAdmin will look for the functions in the Maintenance Database (usually
26-
"postgres" for 8.2 servers) specified in the connection dialogue for the server.
27-
To install the functions in the database, either run the adminpack.sql script
28-
using the pgAdmin SQL tool (and then close and reopen the connection to the
29-
freshly instrumented server), or run the script using psql, eg:
30-
31-
psql -U postgres postgres < adminpack.sql
32-
33-
Other administration tools that use this module may have different requirements,
34-
please consult the tool's documentation for further details.
35-
36-
Objects implemented (superuser only)
37-
====================================
38-
39-
int8 pg_catalog.pg_file_write(fname text, data text, append bool)
40-
int8 pg_catalog.pg_file_read(fname text, data text, append bool)
41-
bool pg_catalog.pg_file_rename(oldname text, newname text)
42-
bool pg_catalog.pg_file_rename(oldname text, newname text, archivname text)
43-
bool pg_catalog.pg_file_unlink(fname text)
44-
bigint pg_catalog.pg_file_size(text)
45-
int4 pg_catalog.pg_logfile_rotate()
46-
setof record pg_catalog.pg_logdir_ls()
47-
1+
PostgreSQL Administration Functions
2+
===================================
3+
4+
This directory is a PostgreSQL 'contrib' module which implements a number of
5+
support functions which pgAdmin and other administration and management tools
6+
can use to provide additional functionality if installed on a server.
7+
8+
Installation
9+
============
10+
11+
This module is normally distributed as a PostgreSQL 'contrib' module. To
12+
install it from a pre-configured source tree run the following commands
13+
as a user with appropriate privileges from the adminpack source directory:
14+
15+
make
16+
make install
17+
18+
Alternatively, if you have a PostgreSQL 8.2 or higher installation but no
19+
source tree you can install using PGXS. Simply run the following commands the
20+
adminpack source directory:
21+
22+
make USE_PGXS=1
23+
make USE_PGXS=1 install
24+
25+
pgAdmin will look for the functions in the Maintenance Database (usually
26+
"postgres" for 8.2 servers) specified in the connection dialogue for the server.
27+
To install the functions in the database, either run the adminpack.sql script
28+
using the pgAdmin SQL tool (and then close and reopen the connection to the
29+
freshly instrumented server), or run the script using psql, eg:
30+
31+
psql -U postgres postgres < adminpack.sql
32+
33+
Other administration tools that use this module may have different requirements,
34+
please consult the tool's documentation for further details.
35+
36+
Objects implemented (superuser only)
37+
====================================
38+
39+
int8 pg_catalog.pg_file_write(fname text, data text, append bool)
40+
int8 pg_catalog.pg_file_read(fname text, data text, append bool)
41+
bool pg_catalog.pg_file_rename(oldname text, newname text)
42+
bool pg_catalog.pg_file_rename(oldname text, newname text, archivname text)
43+
bool pg_catalog.pg_file_unlink(fname text)
44+
bigint pg_catalog.pg_file_size(text)
45+
int4 pg_catalog.pg_logfile_rotate()
46+
setof record pg_catalog.pg_logdir_ls()
47+

0 commit comments

Comments
 (0)