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
5cbf206c
Commit
5cbf206c
authored
17 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update RETURN NEXT documentation for plpgsql.
parent
03ffc4d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/plpgsql.sgml
+6
-5
6 additions, 5 deletions
doc/src/sgml/plpgsql.sgml
with
6 additions
and
5 deletions
doc/src/sgml/plpgsql.sgml
+
6
−
5
View file @
5cbf206c
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.1
19
2007/11/28 20:
13:06
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.1
20
2007/11/28 20:
56:35
momjian Exp $ -->
<chapter id="plpgsql">
<chapter id="plpgsql">
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
...
@@ -132,10 +132,11 @@
...
@@ -132,10 +132,11 @@
</para>
</para>
<para>
<para>
<application>PL/pgSQL</> functions can also be declared to return
<application>PL/pgSQL</> functions can also be declared to return a
a <quote>set</>, or table. Such a function generates its output by
group of values, either as a single row, or a group of rows, like a
executing <command>RETURN NEXT</> for each desired element of the result
table. Such a function generates its output by executing
set, or by using <command>RETURN QUERY</> to output the result of
<command>RETURN NEXT</> for each desired element of the result set,
or by using <command>RETURN QUERY</> to output the result of
evaluating a query.
evaluating a query.
</para>
</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