Commit 856a2301 authored by Peter Eisentraut's avatar Peter Eisentraut

Cosmetic capitalization fix

parent ec497a5a
......@@ -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)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment