]> granicus.if.org Git - postgresql/commitdiff
Minor PL/PgSQL doc tweak: use current_timestamp rather than now() in
authorNeil Conway <neilc@samurai.com>
Fri, 21 Oct 2005 05:11:23 +0000 (05:11 +0000)
committerNeil Conway <neilc@samurai.com>
Fri, 21 Oct 2005 05:11:23 +0000 (05:11 +0000)
an example function.

doc/src/sgml/plpgsql.sgml

index 5bf2518ea7e2d491cd66eada384cd0d2d98cd8c6..dc5cea9fb3d2b6867fb520a9f20626b9fb9e2816 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.78 2005/10/15 01:47:11 neilc Exp $
+$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.79 2005/10/21 05:11:23 neilc Exp $
 -->
 
 <chapter id="plpgsql"> 
@@ -2838,7 +2838,7 @@ CREATE FUNCTION emp_stamp() RETURNS trigger AS $emp_stamp$
         END IF;
 
         -- Remember who changed the payroll when
-        NEW.last_date := now();
+        NEW.last_date := current_timestamp;
         NEW.last_user := current_user;
         RETURN NEW;
     END;