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
5b021741
Commit
5b021741
authored
Apr 03, 2009
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing help output for \ef option. Andrew Gierth
parent
5d7f6993
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/bin/psql/help.c
src/bin/psql/help.c
+3
-2
No files found.
src/bin/psql/help.c
View file @
5b021741
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
*
*
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.14
4 2009/03/25 13:15:55 petere
Exp $
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.14
5 2009/04/03 23:38:19 tgl
Exp $
*/
*/
#include "postgres_fe.h"
#include "postgres_fe.h"
...
@@ -162,7 +162,7 @@ slashUsage(unsigned short int pager)
...
@@ -162,7 +162,7 @@ slashUsage(unsigned short int pager)
{
{
FILE
*
output
;
FILE
*
output
;
output
=
PageOutput
(
8
5
,
pager
);
output
=
PageOutput
(
8
6
,
pager
);
/* if you add/remove a line here, change the row count above */
/* if you add/remove a line here, change the row count above */
...
@@ -175,6 +175,7 @@ slashUsage(unsigned short int pager)
...
@@ -175,6 +175,7 @@ slashUsage(unsigned short int pager)
fprintf
(
output
,
_
(
"Query Buffer
\n
"
));
fprintf
(
output
,
_
(
"Query Buffer
\n
"
));
fprintf
(
output
,
_
(
"
\\
e [FILE] edit the query buffer (or file) with external editor
\n
"
));
fprintf
(
output
,
_
(
"
\\
e [FILE] edit the query buffer (or file) with external editor
\n
"
));
fprintf
(
output
,
_
(
"
\\
ef [FUNCNAME] edit a function definition with external editor
\n
"
));
fprintf
(
output
,
_
(
"
\\
p show the contents of the query buffer
\n
"
));
fprintf
(
output
,
_
(
"
\\
p show the contents of the query buffer
\n
"
));
fprintf
(
output
,
_
(
"
\\
r reset (clear) the query buffer
\n
"
));
fprintf
(
output
,
_
(
"
\\
r reset (clear) the query buffer
\n
"
));
#ifdef USE_READLINE
#ifdef USE_READLINE
...
...
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