summaryrefslogtreecommitdiff
path: root/doc/src/sgml/pltcl.sgml
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-12-03 23:49:51 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-12-03 23:49:51 +0000
commit4c128303e0097096735ed461b194e76702a46ae2 (patch)
treef602ce8ab5a271ebb395654eadefff8c11bc7736 /doc/src/sgml/pltcl.sgml
parentf538329f9db21e32220d73e77cc851573bfb49f7 (diff)
downloadpostgresql-4c128303e0097096735ed461b194e76702a46ae2.tar.gz
Entity-ify a passel of & < > characters. Per gripe from Devrim.
Diffstat (limited to 'doc/src/sgml/pltcl.sgml')
-rw-r--r--doc/src/sgml/pltcl.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/pltcl.sgml b/doc/src/sgml/pltcl.sgml
index 6ae266a5b7..38d1212856 100644
--- a/doc/src/sgml/pltcl.sgml
+++ b/doc/src/sgml/pltcl.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.46 2007/02/21 03:27:31 adunstan Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.47 2007/12/03 23:49:50 tgl Exp $ -->
<chapter id="pltcl">
<title>PL/Tcl - Tcl Procedural Language</title>
@@ -164,7 +164,7 @@ CREATE FUNCTION overpaid(employee) RETURNS boolean AS $$
if {200000.0 &lt; $1(salary)} {
return "t"
}
- if {$1(age) &lt; 30 && 100000.0 &lt; $1(salary)} {
+ if {$1(age) &lt; 30 &amp;&amp; 100000.0 &lt; $1(salary)} {
return "t"
}
return "f"