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
5dd3c562
Commit
5dd3c562
authored
Nov 16, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added documentation on new unique index capability.
parent
4024d430
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/bin/psql/psqlHelp.h
src/bin/psql/psqlHelp.h
+2
-2
src/man/create_index.l
src/man/create_index.l
+3
-3
No files found.
src/bin/psql/psqlHelp.h
View file @
5dd3c562
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: psqlHelp.h,v 1.
6 1996/10/07 02:32:39
momjian Exp $
* $Id: psqlHelp.h,v 1.
7 1996/11/16 05:45:47
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -64,7 +64,7 @@ static struct _helpStruct QL_HELP[] = {
"create function <function_name> ([<type1>,...<typeN>]) returns <return_type>
\n\t
as '<object_filename>'|'<sql-queries>'
\n\t
language 'c'|'sql'|'internal';"
},
{
"create index"
,
"construct an index"
,
"create index <indexname> on <class_name> [using <access_method>] (<attr1>|<funcname>(<attr1>,...) [<type_class1>]);"
},
"create
[unique]
index <indexname> on <class_name> [using <access_method>] (<attr1>|<funcname>(<attr1>,...) [<type_class1>]);"
},
{
"create operator"
,
"create a user-defined operator"
,
"create operator <operator_name> (
\n\t
[leftarg = <type1>][,rightarg = <type2>]
\n\t
,procedure = <func_name>,
\n\t
[,commutator = <com_op>][,negator = <neg_op>]
\n\t
[,restrict = <res_proc>][,hashes]
\n\t
[,join = <join_proc>][,sort = <sort_op1>...<sort_opN>]);"
},
...
...
src/man/create_index.l
View file @
5dd3c562
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_index.l,v 1.
1 1996/11/14 10:15:55 scrappy
Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_index.l,v 1.
2 1996/11/16 05:45:56 momjian
Exp $
.TH "CREATE INDEX" SQL 11/05/95 Postgres95 Postgres95
.SH NAME
create index \(em construct a secondary index
.SH SYNOPSIS
.nf
\fBcreate\fR \fBindex\fR index-name
\fBcreate\fR
[\fBunique\fR]
\fBindex\fR index-name
\fBon\fR classname [\fBusing\fR am-name]
\fB(\fR attname [type_class\fB] )\fR
\fBcreate\fR \fBindex\fR index-name
\fBcreate\fR
[\fBunique\fR]
\fBindex\fR index-name
\fBon\fR classname [\fBusing\fR am-name]
\fB(\fR funcname \fB(\fR attname\-1 { , attname\-i } \fB)\fR type_class \fB)\fR
.fi
...
...
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