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
392793b1
Commit
392793b1
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Functions -> Function's
parent
978c03f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/plsql.sgml
+4
-4
4 additions, 4 deletions
doc/src/sgml/plsql.sgml
with
4 additions
and
4 deletions
doc/src/sgml/plsql.sgml
+
4
−
4
View file @
392793b1
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.1
5
2001/01/17
16:34
:3
4
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.1
6
2001/01/17
22:13
:3
3
momjian Exp $
-->
-->
<chapter id="plsql">
<chapter id="plsql">
...
@@ -472,7 +472,7 @@ END IF;
...
@@ -472,7 +472,7 @@ END IF;
database return a value. Thus, the normal way to call a function
database return a value. Thus, the normal way to call a function
is to execute a SELECT query or doing an assignment (resulting
is to execute a SELECT query or doing an assignment (resulting
in a PL/pgSQL internal SELECT). But there are cases where someone
in a PL/pgSQL internal SELECT). But there are cases where someone
isn't interested in the functions result.
isn't interested in the function
'
s result.
<programlisting>
<programlisting>
PERFORM <replaceable>query</replaceable>
PERFORM <replaceable>query</replaceable>
</programlisting>
</programlisting>
...
@@ -551,7 +551,7 @@ RETURN <replaceable>expression</replaceable>
...
@@ -551,7 +551,7 @@ RETURN <replaceable>expression</replaceable>
</para>
</para>
<para>
<para>
The expressions result will be automatically casted into the
The expressions result will be automatically casted into the
functions return type as described for assignments.
function
'
s return type as described for assignments.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -838,7 +838,7 @@ EXIT [ <replaceable>label</replaceable> ] [ WHEN <replaceable>expression</replac
...
@@ -838,7 +838,7 @@ EXIT [ <replaceable>label</replaceable> ] [ WHEN <replaceable>expression</replac
<para>
<para>
One painful detail of writing functions in PL/pgSQL is the handling
One painful detail of writing functions in PL/pgSQL is the handling
of single quotes. The functions source text on CREATE FUNCTION must
of single quotes. The function
'
s source text on CREATE FUNCTION must
be a literal string. Single quotes inside of literal strings must be
be a literal string. Single quotes inside of literal strings must be
either doubled or quoted with a backslash. We are still looking for
either doubled or quoted with a backslash. We are still looking for
an elegant alternative. In the meantime, doubling the single quotes
an elegant alternative. In the meantime, doubling the single quotes
...
...
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