From: Daniel Gustafsson Date: Fri, 13 Feb 2026 11:12:11 +0000 (+0100) Subject: doc: Mention PASSING support for jsonpath variables X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa082bed0b6433b58815683dde425bce57ed931c;p=thirdparty%2Fpostgresql.git doc: Mention PASSING support for jsonpath variables Commit dfd79e2d added a TODO comment to update this paragraph when support for PASSING was added. Commit 6185c9737cf added PASSING but missed resolving this TODO. Fix by expanding the paragraph with a reference to PASSING. Author: Aditya Gollamudi Reviewed-by: Daniel Gustafsson Discussion: https://postgr.es/m/20260117051406.sx6pss4ryirn2x4v@pgs --- diff --git a/doc/src/sgml/json.sgml b/doc/src/sgml/json.sgml index 206eadb8f7b..8a2aad5935e 100644 --- a/doc/src/sgml/json.sgml +++ b/doc/src/sgml/json.sgml @@ -882,9 +882,10 @@ UPDATE table_name SET jsonb_field[1]['a'] = '1'; $varname A named variable. Its value can be set by the parameter - vars of several JSON processing functions; - see for details. - + vars of several JSON processing functions + (see ), or by + using the SQL/JSON PASSING clause as described + in .