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
6706194e
Commit
6706194e
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Fix psql quotes in docs.
parent
3b5338da
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/ref/psql-ref.sgml
+6
-6
6 additions, 6 deletions
doc/src/sgml/ref/psql-ref.sgml
with
6 additions
and
6 deletions
doc/src/sgml/ref/psql-ref.sgml
+
6
−
6
View file @
6706194e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.3
1
2000/0
4/16 15:46:39 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.3
2
2000/0
5/09 18:55:56 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -851,7 +851,7 @@ lo_import 152801
...
@@ -851,7 +851,7 @@ lo_import 152801
The second argument is a string that should be printed whenever a field
The second argument is a string that should be printed whenever a field
is null. The default is not to print anything, which can easily be mistaken
is null. The default is not to print anything, which can easily be mistaken
for, say, an empty string. Thus, one might choose to write
for, say, an empty string. Thus, one might choose to write
<literal>\pset null
"
(null)
"
</literal>.
<literal>\pset null
'
(null)
'
</literal>.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -863,8 +863,8 @@ lo_import 152801
...
@@ -863,8 +863,8 @@ lo_import 152801
Specifies the field separator to be used in unaligned output mode. That way
Specifies the field separator to be used in unaligned output mode. That way
one can create, for example, tab- or comma-separated output, which other
one can create, for example, tab- or comma-separated output, which other
programs might prefer. To set a tab as field separator, type
programs might prefer. To set a tab as field separator, type
<literal>\pset fieldsep
"
\t
"
</literal>. The default field separator is
<literal>\pset fieldsep
'
\t
'
</literal>. The default field separator is
<quote>
<literal>
|
</literal>
</quote>
(a <quote>pipe</quote> symbol).
<literal>
'|'
</literal> (a <quote>pipe</quote> symbol).
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -2151,8 +2151,8 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
...
@@ -2151,8 +2151,8 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
Notice the changing prompt.
Notice the changing prompt.
<programlisting>
<programlisting>
testdb=> <userinput>CREATE TABLE my_table (</userinput>
testdb=> <userinput>CREATE TABLE my_table (</userinput>
testdb
-
> <userinput> first integer not null default 0,</userinput>
testdb
(
> <userinput> first integer not null default 0,</userinput>
testdb
-
> <userinput> second text</userinput>
testdb
(
> <userinput> second text</userinput>
testdb-> <userinput>);</userinput>
testdb-> <userinput>);</userinput>
CREATE
CREATE
</programlisting>
</programlisting>
...
...
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