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
75b4ee1c
Commit
75b4ee1c
authored
17 years ago
by
Neil Conway
Browse files
Options
Downloads
Patches
Plain Diff
Fix some typos in the documentation. Patch from Brian Gough. Backport
the relevant fixes to 8.2 as well.
parent
40f7b9e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/src/sgml/datatype.sgml
+2
-2
2 additions, 2 deletions
doc/src/sgml/datatype.sgml
doc/src/sgml/ddl.sgml
+3
-3
3 additions, 3 deletions
doc/src/sgml/ddl.sgml
doc/src/sgml/plperl.sgml
+3
-3
3 additions, 3 deletions
doc/src/sgml/plperl.sgml
doc/src/sgml/spi.sgml
+2
-2
2 additions, 2 deletions
doc/src/sgml/spi.sgml
with
10 additions
and
10 deletions
doc/src/sgml/datatype.sgml
+
2
−
2
View file @
75b4ee1c
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.19
8
2007/0
4/21 17:26:17 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.19
9
2007/0
5/03 15:05:56 neilc
Exp $ -->
<chapter id="datatype">
<title id="datatype-title">Data Types</title>
...
...
@@ -3376,7 +3376,7 @@ SET xmloption TO { DOCUMENT | CONTENT };
<para>
When using the binary mode to pass query parameters to the server
and query results back t
he
the client, no character set conversion
and query results back t
o
the client, no character set conversion
is performed, so the situation is different. In this case, an
encoding declaration in the XML data will be observed, and if it
is absent, the data will be assumed to be in UTF-8 (as required by
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/ddl.sgml
+
3
−
3
View file @
75b4ee1c
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.7
3
2007/0
2
/0
1 00:28:16 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.7
4
2007/0
5
/0
3 15:05:56 neilc
Exp $ -->
<chapter id="ddl">
<title>Data Definition</title>
...
...
@@ -2233,7 +2233,7 @@ VALUES ('New York', NULL, NULL, 'NY');
<listitem>
<para>
When queries or updates access a large percentage of a
a
single
When queries or updates access a large percentage of a single
partition, performance can be improved by taking advantage
of sequential scan of that partition instead of using an
index and random access reads scattered across the whole table.
...
...
@@ -2556,7 +2556,7 @@ DO INSTEAD
</programlisting>
Note that the <literal>WHERE</literal> clause in each rule
exactly matches the
the
<literal>CHECK</literal>
exactly matches the <literal>CHECK</literal>
constraint for its partition.
</para>
</listitem>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/plperl.sgml
+
3
−
3
View file @
75b4ee1c
<!-- $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.6
4
2007/0
2/16 03:50:29 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.6
5
2007/0
5/03 15:05:56 neilc
Exp $ -->
<chapter id="plperl">
<title>PL/Perl - Perl Procedural Language</title>
...
...
@@ -20,7 +20,7 @@
<para> The usual advantage to using PL/Perl is that this allows use,
within stored functions, of the manyfold <quote>string
munging</quote> operators and functions available for Perl. Parsing
complex strings might be
be
easier using Perl than it is with the
complex strings might be easier using Perl than it is with the
string functions and control structures provided in PL/pgSQL.</para>
<para>
...
...
@@ -619,7 +619,7 @@ CREATE FUNCTION badfunc() RETURNS integer AS $$
$$ LANGUAGE plperl;
</programlisting>
The creation of this function will fail as its use of a forbidden
operation will be
be
caught by the validator.
operation will be caught by the validator.
</para>
<para>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/spi.sgml
+
2
−
2
View file @
75b4ee1c
<!-- $PostgreSQL: pgsql/doc/src/sgml/spi.sgml,v 1.5
6
2007/0
4/16 01:14:55 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/spi.sgml,v 1.5
7
2007/0
5/03 15:05:56 neilc
Exp $ -->
<chapter id="spi">
<title>Server Programming Interface</title>
...
...
@@ -2233,7 +2233,7 @@ char * SPI_getvalue(HeapTuple <parameter>row</parameter>, TupleDesc <parameter>r
Column value, or <symbol>NULL</symbol> if the column is null,
<parameter>colnumber</parameter> is out of range
(<varname>SPI_result</varname> is set to
<symbol>SPI_ERROR_NOATTRIBUTE</symbol>), or no
no
output function
<symbol>SPI_ERROR_NOATTRIBUTE</symbol>), or no output function
is
available (<varname>SPI_result</varname> is set to
<symbol>SPI_ERROR_NOOUTFUNC</symbol>).
</para>
...
...
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