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
7031dd68
Commit
7031dd68
authored
Feb 23, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add psql \prompt capability.
Chad Wagner
parent
cc77005d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
6 deletions
+77
-6
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/ref/psql-ref.sgml
+19
-1
src/bin/psql/command.c
src/bin/psql/command.c
+52
-1
src/bin/psql/help.c
src/bin/psql/help.c
+4
-2
src/bin/psql/tab-complete.c
src/bin/psql/tab-complete.c
+2
-2
No files found.
doc/src/sgml/ref/psql-ref.sgml
View file @
7031dd68
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.18
6 2007/02/21 23:22:42
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.18
7 2007/02/23 18:20:58
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -1429,6 +1429,24 @@ lo_import 152801
</listitem>
</varlistentry>
<varlistentry>
<term><literal>\prompt [ <replaceable class="parameter">text</replaceable> ] <replaceable class="parameter">name</replaceable></literal></term>
<listitem>
<para>
Prompts the user to set variable <replaceable
class="parameter">name</>. An optional prompt, <replaceable
class="parameter">text</>, can be specified. (For multi-word
prompts, use single-quotes.)
</para>
<para>
By default, <literal>\prompt</> uses the terminal for input and
output. However, if the <option>-f</> command line switch is
used, <literal>\prompt</> uses standard input and standard output.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>\pset <replaceable class="parameter">parameter</replaceable> [ <replaceable class="parameter">value</replaceable> ]</literal></term>
...
...
src/bin/psql/command.c
View file @
7031dd68
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.17
7 2007/01/05 22:19:49
momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.17
8 2007/02/23 18:20:58
momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
...
...
@@ -712,6 +712,57 @@ exec_command(const char *cmd,
free
(
pw2
);
}
/* \prompt -- prompt and set variable */
else
if
(
strcmp
(
cmd
,
"prompt"
)
==
0
)
{
char
*
opt
,
*
prompt_text
=
NULL
;
char
*
arg1
,
*
arg2
;
arg1
=
psql_scan_slash_option
(
scan_state
,
OT_NORMAL
,
NULL
,
false
);
arg2
=
psql_scan_slash_option
(
scan_state
,
OT_NORMAL
,
NULL
,
false
);
if
(
!
arg1
)
{
psql_error
(
"
\\
%s: missing required argument
\n
"
,
cmd
);
success
=
false
;
}
else
{
char
*
result
;
if
(
arg2
)
{
prompt_text
=
arg1
;
opt
=
arg2
;
}
else
opt
=
arg1
;
if
(
!
pset
.
inputfile
)
result
=
simple_prompt
(
prompt_text
,
4096
,
true
);
else
{
if
(
prompt_text
)
{
fputs
(
prompt_text
,
stdout
);
fflush
(
stdout
);
}
result
=
gets_fromFile
(
stdin
);
}
if
(
!
SetVariable
(
pset
.
vars
,
opt
,
result
))
{
psql_error
(
"
\\
%s: error
\n
"
,
cmd
);
success
=
false
;
}
free
(
result
);
if
(
prompt_text
)
free
(
prompt_text
);
free
(
opt
);
}
}
/* \pset -- set printing parameters */
else
if
(
strcmp
(
cmd
,
"pset"
)
==
0
)
{
...
...
src/bin/psql/help.c
View file @
7031dd68
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.11
6 2007/01/05 22:19:4
9 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.11
7 2007/02/23 18:20:5
9 momjian Exp $
*/
#include "postgres_fe.h"
...
...
@@ -161,7 +161,7 @@ slashUsage(unsigned short int pager)
{
FILE
*
output
;
output
=
PageOutput
(
6
7
,
pager
);
output
=
PageOutput
(
6
9
,
pager
);
/* if you add/remove a line here, change the row count above */
...
...
@@ -184,6 +184,8 @@ slashUsage(unsigned short int pager)
fprintf
(
output
,
_
(
"
\\
timing toggle timing of commands (currently %s)
\n
"
),
ON
(
pset
.
timing
));
fprintf
(
output
,
_
(
"
\\
unset NAME unset (delete) internal variable
\n
"
));
fprintf
(
output
,
_
(
"
\\
prompt [TEXT] NAME
\n
"
" prompt user to set internal variable
\n
"
));
fprintf
(
output
,
_
(
"
\\
! [COMMAND] execute command in shell or start interactive shell
\n
"
));
fprintf
(
output
,
"
\n
"
);
...
...
src/bin/psql/tab-complete.c
View file @
7031dd68
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.15
8 2007/02/07 00:52:35 petere
Exp $
* $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.15
9 2007/02/23 18:20:59 momjian
Exp $
*/
/*----------------------------------------------------------------------
...
...
@@ -542,7 +542,7 @@ psql_completion(char *text, int start, int end)
"
\\
e"
,
"
\\
echo"
,
"
\\
encoding"
,
"
\\
f"
,
"
\\
g"
,
"
\\
h"
,
"
\\
help"
,
"
\\
H"
,
"
\\
i"
,
"
\\
l"
,
"
\\
lo_import"
,
"
\\
lo_export"
,
"
\\
lo_list"
,
"
\\
lo_unlink"
,
"
\\
o"
,
"
\\
p"
,
"
\\
password"
,
"
\\
pset"
,
"
\\
q"
,
"
\\
qecho"
,
"
\\
r"
,
"
\\
o"
,
"
\\
p"
,
"
\\
password"
,
"
\\
p
rompt"
,
"
\\
p
set"
,
"
\\
q"
,
"
\\
qecho"
,
"
\\
r"
,
"
\\
set"
,
"
\\
t"
,
"
\\
T"
,
"
\\
timing"
,
"
\\
unset"
,
"
\\
x"
,
"
\\
w"
,
"
\\
z"
,
"
\\
!"
,
NULL
};
...
...
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