From: Bruce Momjian Date: Sun, 30 Nov 2003 04:47:37 +0000 (+0000) Subject: There is an unused variable in an example function in the PL/PgSQL X-Git-Tag: REL8_0_0BETA1~1613 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a7c373d18475f9fc68c0873a85a8ad3f662c3aa;p=thirdparty%2Fpostgresql.git There is an unused variable in an example function in the PL/PgSQL documentation; this patch removes it. Neil Conway --- diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 2c63c21ae4f..c3502df3f53 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,5 +1,5 @@ @@ -986,7 +986,6 @@ END IF; DECLARE users_rec RECORD; - full_name varchar; BEGIN SELECT INTO users_rec * FROM users WHERE user_id=3;