Cosmetic capitalization fix

This commit is contained in:
Peter Eisentraut 2011-03-22 17:44:38 +02:00
parent ec497a5ad6
commit 856a23018c
1 changed files with 1 additions and 1 deletions

View File

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