]> granicus.if.org Git - postgresql/commitdiff
Fix broken example in PL/pgSQL document.
authorFujii Masao <fujii@postgresql.org>
Thu, 9 Oct 2014 18:18:01 +0000 (03:18 +0900)
committerFujii Masao <fujii@postgresql.org>
Thu, 9 Oct 2014 18:18:48 +0000 (03:18 +0900)
Back-patch to all supported branches.

Marti Raudsepp, per a report from Marko Tiikkaja

doc/src/sgml/plpgsql.sgml

index 91fadb0f14d8802dbff7dabbb5b455b1ad22fc0c..e0a266807982974569d7626d5470fe4e7db6ead0 100644 (file)
@@ -487,8 +487,8 @@ $$ LANGUAGE plpgsql;
 CREATE FUNCTION extended_sales(p_itemno int)
 RETURNS TABLE(quantity int, total numeric) AS $$
 BEGIN
-    RETURN QUERY SELECT quantity, quantity * price FROM sales
-                 WHERE itemno = p_itemno;
+    RETURN QUERY SELECT s.quantity, s.quantity * s.price FROM sales AS s
+                 WHERE s.itemno = p_itemno;
 END;
 $$ LANGUAGE plpgsql;
 </programlisting>