Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
5e3189ea
Commit
5e3189ea
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update psql banner
parent
e9a50309
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/ref/psql-ref.sgml
+6
-6
6 additions, 6 deletions
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/startup.c
+6
-6
6 additions, 6 deletions
src/bin/psql/startup.c
with
12 additions
and
12 deletions
doc/src/sgml/ref/psql-ref.sgml
+
6
−
6
View file @
5e3189ea
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.1
6
1999/11/05 1
5:44:56
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.1
7
1999/11/05 1
8:21:08
momjian Exp $
Postgres documentation
-->
...
...
@@ -133,11 +133,11 @@ Postgres documentation
$ <userinput>psql testdb</userinput>
Welcome to psql, the PostgreSQL interactive terminal.
Type \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit
Type
:
\copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit
testdb=>
</programlisting>
...
...
This diff is collapsed.
Click to expand it.
src/bin/psql/startup.c
+
6
−
6
View file @
5e3189ea
...
...
@@ -177,15 +177,15 @@ main(int argc, char **argv)
if
(
!
GetVariable
(
settings
.
vars
,
"quiet"
)
&&
!
settings
.
notty
&&
!
options
.
action
)
{
puts
(
"Welcome to psql, the PostgreSQL interactive terminal.
\n
\n
"
);
puts
(
"Welcome to psql, the PostgreSQL interactive terminal.
\n
"
);
//showVersion(&settings, false);
puts
(
"Type
\\
copyright for distribution terms
\n
"
"
\\
h for help with SQL commands
\n
"
"
\\
? for help on internal slash commands
\n
"
"
\\
g or terminate with semicolon to execute query
\n
"
"
\\
q to quit
\n
"
);
puts
(
"Type
:
\\
copyright for distribution terms
\n
"
"
\\
h for help with SQL commands
\n
"
"
\\
? for help on internal slash commands
\n
"
"
\\
g or terminate with semicolon to execute query
\n
"
"
\\
q to quit
\n
"
);
}
process_psqlrc
(
&
settings
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment