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
7038554c
Commit
7038554c
authored
May 06, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow 'psql -f -' to read from standard input.
parent
84e8e5b4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/ref/psql-ref.sgml
+7
-1
src/bin/psql/startup.c
src/bin/psql/startup.c
+4
-2
No files found.
doc/src/sgml/ref/psql-ref.sgml
View file @
7038554c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.4
8 2001/05/06 17:21:1
1 petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.4
9 2001/05/06 17:38:3
1 petere Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -1292,6 +1292,12 @@ Access permissions for database "test"
...
@@ -1292,6 +1292,12 @@ Access permissions for database "test"
After the file is processed, <application>psql</application> terminates.
After the file is processed, <application>psql</application> terminates.
This is in many ways equivalent to the internal command <command>\i</command>.
This is in many ways equivalent to the internal command <command>\i</command>.
</para>
</para>
<para>
If <replaceable>filename</replaceable> is <literal>-</literal>
(hyphen), then standard input is read.
</para>
<para>
<para>
Using this option is subtly different from writing
Using this option is subtly different from writing
<literal>psql < <replaceable class="parameter">filename</replaceable></literal>.
<literal>psql < <replaceable class="parameter">filename</replaceable></literal>.
...
...
src/bin/psql/startup.c
View file @
7038554c
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
*
*
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.4
6 2001/03/23 00:36:38 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.4
7 2001/05/06 17:38:32 petere
Exp $
*/
*/
#include "postgres_fe.h"
#include "postgres_fe.h"
...
@@ -230,7 +230,7 @@ main(int argc, char *argv[])
...
@@ -230,7 +230,7 @@ main(int argc, char *argv[])
/*
/*
* process file given by -f
* process file given by -f
*/
*/
if
(
options
.
action
==
ACT_FILE
)
if
(
options
.
action
==
ACT_FILE
&&
strcmp
(
options
.
action_string
,
"-"
)
!=
0
)
{
{
if
(
!
options
.
no_psqlrc
)
if
(
!
options
.
no_psqlrc
)
process_psqlrc
();
process_psqlrc
();
...
@@ -290,6 +290,8 @@ main(int argc, char *argv[])
...
@@ -290,6 +290,8 @@ main(int argc, char *argv[])
process_psqlrc
();
process_psqlrc
();
if
(
!
pset
.
notty
)
if
(
!
pset
.
notty
)
initializeInput
(
options
.
no_readline
?
0
:
1
);
initializeInput
(
options
.
no_readline
?
0
:
1
);
if
(
options
.
action_string
)
/* -f - was used */
pset
.
inputfile
=
"<stdin>"
;
successResult
=
MainLoop
(
stdin
);
successResult
=
MainLoop
(
stdin
);
}
}
...
...
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