]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Add missing ';'
authorTatsuo Ishii <ishii@postgresql.org>
Mon, 10 Sep 2001 02:46:18 +0000 (02:46 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Mon, 10 Sep 2001 02:46:18 +0000 (02:46 +0000)
doc/src/sgml/func.sgml

index 55294ccfb751054de783a2059fceb660d5ae1ec2..89a9bd1f8ebb020f3b4badfdf0623ecafe8fe567 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.70 2001/09/09 17:21:58 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.71 2001/09/10 02:46:18 ishii Exp $ -->
 
 <chapter id="functions">
  <title>Functions and Operators</title>
@@ -2769,7 +2769,7 @@ date_part('<replaceable>field</replaceable>', <replaceable>source</replaceable>)
 SELECT date_part('day', TIMESTAMP '2001-02-16 20:38:40');
 <lineannotation>Result: </lineannotation><computeroutput>16</computeroutput>
 
-SELECT date_part('hour', INTERVAL '4 hours 3 minutes')
+SELECT date_part('hour', INTERVAL '4 hours 3 minutes');
 <lineannotation>Result: </lineannotation><computeroutput>4</computeroutput>
 </screen>
    </informalexample>