aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-03-22 17:44:38 +0200
committerPeter Eisentraut <peter_e@gmx.net>2011-03-22 21:59:53 -0400
commit856a23018c976794655d6f53b72fb692178fbb27 (patch)
tree8e7f262d132ad7b071d036d9ece3eef006bde2e0
parentec497a5ad6a0849efa3fb2fd05988bd8e0c0865d (diff)
downloadpostgresql-856a23018c976794655d6f53b72fb692178fbb27.tar.gz
postgresql-856a23018c976794655d6f53b72fb692178fbb27.zip
Cosmetic capitalization fix
-rw-r--r--doc/src/sgml/plpython.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index ba785e9a531..d39158ac12e 100644
--- a/doc/src/sgml/plpython.sgml
+++ b/doc/src/sgml/plpython.sgml
@@ -1199,7 +1199,7 @@ $$ LANGUAGE plpythonu;
ad-hoc queries. A PL/Python equivalent of dynamic SQL from <xref
linkend="plpgsql-quote-literal-example"> would be:
<programlisting>
-plpy.execute("UPDATE tbl SET %s = %s where key = %s" % (
+plpy.execute("UPDATE tbl SET %s = %s WHERE key = %s" % (
plpy.quote_ident(colname),
plpy.quote_nullable(newvalue),
plpy.quote_literal(keyvalue)))