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
301f8008
Commit
301f8008
authored
Apr 21, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge psql \df options into a single \? line, and update docs.
parent
aeb3c2fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/ref/psql-ref.sgml
+2
-3
src/bin/psql/help.c
src/bin/psql/help.c
+2
-3
No files found.
doc/src/sgml/ref/psql-ref.sgml
View file @
301f8008
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.22
4 2009/04/21 15:49:06
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.22
5 2009/04/21 17:23:05
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -1038,8 +1038,7 @@ testdb=>
<varlistentry>
<term><literal>\df[S+] [ <replaceable class="parameter">pattern</replaceable> ]</literal></term>
<term><literal>\df[antw][S+] [ <replaceable class="parameter">pattern</replaceable> ]</literal></term>
<term><literal>\df[antwS+] [ <replaceable class="parameter">pattern</replaceable> ]</literal></term>
<listitem>
<para>
...
...
src/bin/psql/help.c
View file @
301f8008
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.14
7 2009/04/21 15:49:06
momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.14
8 2009/04/21 17:23:05
momjian Exp $
*/
#include "postgres_fe.h"
...
...
@@ -205,8 +205,7 @@ slashUsage(unsigned short int pager)
fprintf
(
output
,
_
(
"
\\
des[+] [PATTERN] list foreign servers
\n
"
));
fprintf
(
output
,
_
(
"
\\
deu[+] [PATTERN] list user mappings
\n
"
));
fprintf
(
output
,
_
(
"
\\
dew[+] [PATTERN] list foreign-data wrappers
\n
"
));
fprintf
(
output
,
_
(
"
\\
df[S+] [PATTERN] list functions
\n
"
));
fprintf
(
output
,
_
(
"
\\
df[antwS+] [PATTERN] list only agg/normal/trigger/window functions
\n
"
));
fprintf
(
output
,
_
(
"
\\
df[antwS+] [PATTERN] list (only agg/normal/trigger/window) functions
\n
"
));
fprintf
(
output
,
_
(
"
\\
dF[+] [PATTERN] list text search configurations
\n
"
));
fprintf
(
output
,
_
(
"
\\
dFd[+] [PATTERN] list text search dictionaries
\n
"
));
fprintf
(
output
,
_
(
"
\\
dFp[+] [PATTERN] list text search parsers
\n
"
));
...
...
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