]> granicus.if.org Git - postgresql/blobdiff - doc/src/sgml/plpython.sgml
Remove use of '<' and '>' in SGML, use '&' escapes.
[postgresql] / doc / src / sgml / plpython.sgml
index 135ef85d5bce0b05bb15beeb7707ab1db7fe966f..4a118ebd67f515e005f1f71728f87de08931a1ad 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.33 2006/09/03 22:23:58 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.34 2006/10/16 17:28:03 momjian Exp $ -->
 
 <chapter id="plpython">
  <title>PL/Python - Python Procedural Language</title>
@@ -123,7 +123,7 @@ CREATE FUNCTION pymax (a integer, b integer)
 AS $$
   if (a is None) or (b is None):
     return None
-  if a > b:
+  if a &gt; b:
     return a
   return b
 $$ LANGUAGE plpythonu;