Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f0d20e5

Browse files
committed
Improve documentation example for jsonpath like_regex operator
Make sample like_regex match string values of the root object instead of the whole document. The corrected example seems to represent a more relevant use case. Backpatch to 12, when jsonpath was introduced. Discussion: https://postgr.es/m/13440f8b-4c1f-5875-c8e3-f3f65606af2f%40xs4all.nl Author: Erik Rijkers Reviewed-by: Michael Paquier, Alexander Korotkov Backpatch-through: 12
1 parent 6e9723c commit f0d20e5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/src/sgml/func.sgml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13238,9 +13238,10 @@ strict $.**.HR
1323813238
is a JSON path string literal, written according to the rules given in
1323913239
<xref linkend="datatype-jsonpath"/>. This means in particular that any
1324013240
backslashes you want to use in the regular expression must be doubled.
13241-
For example, to match strings that contain only digits:
13241+
For example, to match string values of the root document that contain
13242+
only digits:
1324213243
<programlisting>
13243-
'$ ? (@ like_regex "^\\d+$")'
13244+
$.* ? (@ like_regex "^\\d+$")
1324413245
</programlisting>
1324513246
</para>
1324613247

0 commit comments

Comments
 (0)