Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8c78f8e6
Commit
8c78f8e6
authored
Feb 05, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add PL/PgSQL FOUND and GET DIAGNOSTICS support for RETURN QUERY
statement Pavel Stehule
parent
78cbd498
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
71 additions
and
2 deletions
+71
-2
doc/src/sgml/plpgsql.sgml
doc/src/sgml/plpgsql.sgml
+9
-1
src/pl/plpgsql/src/pl_exec.c
src/pl/plpgsql/src/pl_exec.c
+6
-1
src/test/regress/expected/plpgsql.out
src/test/regress/expected/plpgsql.out
+32
-0
src/test/regress/sql/plpgsql.sql
src/test/regress/sql/plpgsql.sql
+24
-0
No files found.
doc/src/sgml/plpgsql.sgml
View file @
8c78f8e6
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.13
7 2009/02/04 21:30:41 alvherre
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.13
8 2009/02/05 15:25:49 momjian
Exp $ -->
<chapter id="plpgsql">
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
...
...
@@ -1356,6 +1356,14 @@ GET DIAGNOSTICS integer_var = ROW_COUNT;
execution of other statements within the loop body.
</para>
</listitem>
<listitem>
<para>
A <command>RETURN QUERY</command> and <command>RETURN QUERY
EXECUTE</command> statements set <literal>FOUND</literal>
true if the query returns at least one row, false if no row
is returned.
</para>
</listitem>
</itemizedlist>
<literal>FOUND</literal> is a local variable within each
...
...
src/pl/plpgsql/src/pl_exec.c
View file @
8c78f8e6
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.23
1 2009/01/21 11:13:14 heikki
Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.23
2 2009/02/05 15:25:49 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -2286,6 +2286,7 @@ exec_stmt_return_query(PLpgSQL_execstate *estate,
PLpgSQL_stmt_return_query
*
stmt
)
{
Portal
portal
;
uint32
processed
=
0
;
if
(
!
estate
->
retisset
)
ereport
(
ERROR
,
...
...
@@ -2327,6 +2328,7 @@ exec_stmt_return_query(PLpgSQL_execstate *estate,
HeapTuple
tuple
=
SPI_tuptable
->
vals
[
i
];
tuplestore_puttuple
(
estate
->
tuple_store
,
tuple
);
processed
++
;
}
MemoryContextSwitchTo
(
old_cxt
);
...
...
@@ -2336,6 +2338,9 @@ exec_stmt_return_query(PLpgSQL_execstate *estate,
SPI_freetuptable
(
SPI_tuptable
);
SPI_cursor_close
(
portal
);
estate
->
eval_processed
=
processed
;
exec_set_found
(
estate
,
processed
!=
0
);
return
PLPGSQL_RC_OK
;
}
...
...
src/test/regress/expected/plpgsql.out
View file @
8c78f8e6
...
...
@@ -3666,3 +3666,35 @@ select * from tftest(10);
(2 rows)
drop function tftest(int);
create or replace function rttest()
returns setof int as $$
declare rc int;
begin
return query values(10),(20);
get diagnostics rc = row_count;
raise notice '% %', found, rc;
return query select * from (values(10),(20)) f(a) where false;
get diagnostics rc = row_count;
raise notice '% %', found, rc;
return query execute 'values(10),(20)';
get diagnostics rc = row_count;
raise notice '% %', found, rc;
return query execute 'select * from (values(10),(20)) f(a) where false';
get diagnostics rc = row_count;
raise notice '% %', found, rc;
end;
$$ language plpgsql;
select * from rttest();
NOTICE: t 2
NOTICE: f 0
NOTICE: t 2
NOTICE: f 0
rttest
--------
10
20
10
20
(4 rows)
drop function rttest();
src/test/regress/sql/plpgsql.sql
View file @
8c78f8e6
...
...
@@ -2948,3 +2948,27 @@ $$ language plpgsql immutable strict;
select
*
from
tftest
(
10
);
drop
function
tftest
(
int
);
create
or
replace
function
rttest
()
returns
setof
int
as
$$
declare
rc
int
;
begin
return
query
values
(
10
),(
20
);
get
diagnostics
rc
=
row_count
;
raise
notice
'% %'
,
found
,
rc
;
return
query
select
*
from
(
values
(
10
),(
20
))
f
(
a
)
where
false
;
get
diagnostics
rc
=
row_count
;
raise
notice
'% %'
,
found
,
rc
;
return
query
execute
'values(10),(20)'
;
get
diagnostics
rc
=
row_count
;
raise
notice
'% %'
,
found
,
rc
;
return
query
execute
'select * from (values(10),(20)) f(a) where false'
;
get
diagnostics
rc
=
row_count
;
raise
notice
'% %'
,
found
,
rc
;
end
;
$$
language
plpgsql
;
select
*
from
rttest
();
drop
function
rttest
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment