projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
730422a
)
Doc: make cross-reference to format() function more specific.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 7 Dec 2018 15:41:26 +0000
(10:41 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 7 Dec 2018 15:41:26 +0000
(10:41 -0500)
Jeff Janes
Discussion: https://postgr.es/m/CAMkU=1w7Tn2M9BhK+rt8Shtz1AkU+ty7By8gj5C==z65=U4vyQ@mail.gmail.com
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index b9eb98cfd704640babf5c614712c7e94871a7bb3..1f2abbb5d17411c0a92d1df58e8f4019a99bd62d 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1414,7
+1414,7
@@
EXECUTE 'UPDATE tbl SET '
<para>
Dynamic SQL statements can also be safely constructed using the
<function>format</function> function (see <xref
- linkend="functions-string"/>). For example:
+ linkend="functions-string
-format
"/>). For example:
<programlisting>
EXECUTE format('UPDATE tbl SET %I = %L '
'WHERE key = %L', colname, newvalue, keyvalue);