1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Entity-ify a passel of & < > characters. Per gripe from Devrim.

This commit is contained in:
Tom Lane
2007-12-03 23:49:51 +00:00
parent f538329f9d
commit 4c128303e0
21 changed files with 134 additions and 135 deletions

View File

@@ -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"