Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
39f2ec55
Commit
39f2ec55
authored
Oct 14, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No more pgintro.
parent
103959a3
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
35 deletions
+12
-35
src/man/create_table.l
src/man/create_table.l
+2
-4
src/man/createdb.1
src/man/createdb.1
+1
-3
src/man/createuser.1
src/man/createuser.1
+1
-3
src/man/destroydb.1
src/man/destroydb.1
+1
-3
src/man/destroyuser.1
src/man/destroyuser.1
+1
-3
src/man/drop_type.l
src/man/drop_type.l
+1
-2
src/man/insert.l
src/man/insert.l
+2
-3
src/man/pg_hba.conf.5
src/man/pg_hba.conf.5
+1
-4
src/man/postmaster.1
src/man/postmaster.1
+1
-3
src/man/psql.1
src/man/psql.1
+1
-7
No files found.
src/man/create_table.l
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.2
1 1998/06/24 13:21:24
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.2
2 1998/10/14 02:54:29
momjian Exp $
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
.SH NAME
create table - create a new class
...
...
@@ -66,9 +66,7 @@ from the class are automatically a type and can be used in
.IR alter_table(l)
or other
.BR create_table(l)
statements. See
.IR pgintro(1)
for a further discussion of this point.
statements.
.PP
The optional
.BR constraint
...
...
src/man/createdb.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.1
2 1998/07/24 16:44:03
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.1
3 1998/10/14 02:54:30
momjian Exp $
.TH CREATEDB UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME
createdb - create a database
...
...
@@ -58,8 +58,6 @@ understands the following command-line options:
.BR "-a" " system"
Specifies an authentication system
.IR "system"
(see
.IR pgintro(1))
to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
...
...
src/man/createuser.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.1
2 1998/08/22 05:19:35
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.1
3 1998/10/14 02:54:31
momjian Exp $
.TH CREATEUSER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME
createuser - create a Postgres user
...
...
@@ -66,8 +66,6 @@ understands the following command-line options:
.BR "-a" " system"
Specifies an authentication system
.IR "system"
(see
.IR pgintro(1))
to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
...
...
src/man/destroydb.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroydb.1,v 1.1
1 1998/07/24 16:44:03
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroydb.1,v 1.1
2 1998/10/14 02:54:32
momjian Exp $
.TH DESTROYDB UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME
destroydb - destroy an existing database
...
...
@@ -61,8 +61,6 @@ Prompts before destroying a database (interactive).
.BR "-a" " system"
Specifies an authentication system
.IR "system"
(see
.IR pgintro(1))
to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
...
...
src/man/destroyuser.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroyuser.1,v 1.1
1 1998/07/24 16:44:04
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroyuser.1,v 1.1
2 1998/10/14 02:54:33
momjian Exp $
.TH DESTROYUSER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME
destroyuser - destroy a Postgres user and associated databases
...
...
@@ -51,8 +51,6 @@ understands the following command-line options:
.BR "-a" " system"
Specifies an authentication system
.IR "system"
(see
.IR pgintro(1))
to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
...
...
src/man/drop_type.l
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_type.l,v 1.
6 1998/06/23 17:52:37
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_type.l,v 1.
7 1998/10/14 02:54:35
momjian Exp $
.TH "DROP TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME
drop type - remove a user-defined type from the system catalogs
...
...
@@ -23,7 +23,6 @@ deleted type.
drop type box
.fi
.SH "SEE ALSO"
pgintro(1),
create_type(l),
drop_operator(l).
.SH "BUGS"
...
...
src/man/insert.l
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.1
1 1998/06/24 13:21:27
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.1
2 1998/10/14 02:54:36
momjian Exp $
.TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME
insert - insert tuples to a relation
...
...
@@ -60,8 +60,7 @@ or
.IR uIndex
is an integer constant and
.IR array_str
is an array constant (see
.IR pgintro(1)).
is an array constant.
.PP
If the user does not specify any array bounds (as in the third form)
...
...
src/man/pg_hba.conf.5
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_hba.conf.5,v 1.
6 1998/06/24 13:21:28
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_hba.conf.5,v 1.
7 1998/10/14 02:54:37
momjian Exp $
.TH pg_hba.conf 5 1/26/98 PostgreSQL PostgreSQL
.SH NAME
$PGDATA/pg_hba.conf
...
...
@@ -109,6 +109,3 @@ host all 192.168.0.3 255.255.255.0 password
# The rest of this group of machines should provide encrypted passwords.
host all 192.168.0.0 255.255.255.0 crypt
.SH "SEE ALSO"
pgintro(1).
src/man/postmaster.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.1
2 1998/06/24 13:21:29
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.1
3 1998/10/14 02:54:38
momjian Exp $
.TH POSTMASTER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH "NAME"
postmaster - run the Postgres postmaster
...
...
@@ -90,8 +90,6 @@ discarded.
.BR "-a" " system"
Specifies whether or not to use the authentication system
.IR "system"
(see
.IR pgintro(1))
for frontend applications to use in connecting to the
.IR postmaster
process. Specify
...
...
src/man/psql.1
View file @
39f2ec55
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.2
8 1998/08/10 20:31:40
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.2
9 1998/10/14 02:54:39
momjian Exp $
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME
psql - run the interactive query front-end
...
...
@@ -117,8 +117,6 @@ understands the following command-line options:
.BR "-a" " system"
Specifies an authentication system
.IR "system"
(see
.IR pgintro(1))
to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
...
...
@@ -424,10 +422,6 @@ only applies if
authentication is in use. If this environment variable is set, Postgres
will attempt authentication with servers for this realm and use
separate ticket files to avoid conflicts with local ticket files.
See
.IR pgintro(1)
for additional information on
.IR Kerberos .
.SH "RETURN VALUE"
.IR psql
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment