From: Tom Lane Date: Fri, 7 Dec 2018 15:41:26 +0000 (-0500) Subject: Doc: make cross-reference to format() function more specific. X-Git-Tag: aio-before-rebase-2020-06-24~3420 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=eeee62d8052ccd3fb8e26be1392a93167f83d937;p=users%2Fandresfreund%2Fpostgres.git Doc: make cross-reference to format() function more specific. Jeff Janes Discussion: https://postgr.es/m/CAMkU=1w7Tn2M9BhK+rt8Shtz1AkU+ty7By8gj5C==z65=U4vyQ@mail.gmail.com --- diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index b9eb98cfd7..1f2abbb5d1 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1414,7 +1414,7 @@ EXECUTE 'UPDATE tbl SET ' Dynamic SQL statements can also be safely constructed using the format function (see ). For example: + linkend="functions-string-format"/>). For example: EXECUTE format('UPDATE tbl SET %I = %L ' 'WHERE key = %L', colname, newvalue, keyvalue);