projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
035fbb6
)
There is an unused variable in an example function in the PL/PgSQL
author
Bruce Momjian
<bruce@momjian.us>
Sun, 30 Nov 2003 04:47:37 +0000
(
04:47
+0000)
committer
Bruce Momjian
<bruce@momjian.us>
Sun, 30 Nov 2003 04:47:37 +0000
(
04:47
+0000)
documentation; this patch removes it.
Neil Conway
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index 2c63c21ae4fc4ac7d2eb29d5a5df09137e6cb862..c3502df3f5315d58b48d993eb7c66404ebd2477c 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1,5
+1,5
@@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.3
0 2003/11/29 19:51:37 pgsql
Exp $
+$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.3
1 2003/11/30 04:47:37 momjian
Exp $
-->
<chapter id="plpgsql">
@@
-986,7
+986,6
@@
END IF;
<programlisting>
DECLARE
users_rec RECORD;
- full_name varchar;
BEGIN
SELECT INTO users_rec * FROM users WHERE user_id=3;