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
87a8c72a
Commit
87a8c72a
authored
Nov 05, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up startup banner
parent
e6a0e4ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
src/bin/psql/startup.c
src/bin/psql/startup.c
+4
-5
No files found.
src/bin/psql/startup.c
View file @
87a8c72a
...
@@ -177,15 +177,14 @@ main(int argc, char **argv)
...
@@ -177,15 +177,14 @@ main(int argc, char **argv)
if
(
!
GetVariable
(
settings
.
vars
,
"quiet"
)
&&
!
settings
.
notty
&&
!
options
.
action
)
if
(
!
GetVariable
(
settings
.
vars
,
"quiet"
)
&&
!
settings
.
notty
&&
!
options
.
action
)
{
{
puts
(
"Welcome to psql, the PostgreSQL interactive terminal.
\n
"
puts
(
"Welcome to psql, the PostgreSQL interactive terminal.
\n
"
"(
Please type
\\
copyright to see the distribution terms of PostgreSQL
.)"
);
"(
Type
\\
copyright to see the distribution terms
.)"
);
//showVersion(&settings, false);
//showVersion(&settings, false);
puts
(
"
\n
"
puts
(
"Type
\\
h for help with SQL commands,
\n
"
"Type
\\
h for help with SQL commands,
\n
"
"
\\
? for help on internal slash commands,
\n
"
"
\\
? for help on internal slash commands,
\n
"
"
\\
q to quit,
\n
"
"
\\
g or terminate with semicolon to execute query.
"
"
\\
g or terminate with semicolon to execute query.
"
);
"
\\
q to quit,
\n
"
);
}
}
process_psqlrc
(
&
settings
);
process_psqlrc
(
&
settings
);
...
...
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