mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Cosmetic capitalization fix
This commit is contained in:
@ -1199,7 +1199,7 @@ $$ LANGUAGE plpythonu;
|
|||||||
ad-hoc queries. A PL/Python equivalent of dynamic SQL from <xref
|
ad-hoc queries. A PL/Python equivalent of dynamic SQL from <xref
|
||||||
linkend="plpgsql-quote-literal-example"> would be:
|
linkend="plpgsql-quote-literal-example"> would be:
|
||||||
<programlisting>
|
<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_ident(colname),
|
||||||
plpy.quote_nullable(newvalue),
|
plpy.quote_nullable(newvalue),
|
||||||
plpy.quote_literal(keyvalue)))
|
plpy.quote_literal(keyvalue)))
|
||||||
|
Reference in New Issue
Block a user