NIFI-8032: fix record-path-guide.adoc

This closes #4679

Signed-off-by: Mike Thomsen <mthomsen@apache.org>
This commit is contained in:
zhangcheng 2020-11-20 17:03:03 +08:00 committed by Mike Thomsen
parent 7ad9520079
commit 857eeca3c7
No known key found for this signature in database
GPG Key ID: 88511C3D4CAD246F
1 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ is telling the RecordPath that we want to access the `details` field at the high
field we can use square brackets to indicate that we want to specify a Map Key, and we can then specify the key in quotes.
Further, we can select more than one Map Key, using a comma-separated list: `/details/address['city', 'state', 'zip']`. We can also select all of the fields, if we want,
using the Wildcard operator (`*`): `/details/address[*]`. Map fields do not contain any sort of ordering, so it is not possible to reference the keys by numeric indices.
using the Wildcard operator (`\*`): `/details/address[*]`. Map fields do not contain any sort of ordering, so it is not possible to reference the keys by numeric indices.
[[predicates]]
@ -255,7 +255,7 @@ fields relative to the field that the Predicate applies to. The `Operator` must
- Greater Than (`>`)
- Greater Than or Equal To (`>=`)
- Less Than (`<`)
- Less Than or Equal To (`<=`)
- Less Than or Equal To (`\<=`)
The `Expression` can be a literal value such as `50` or `Hello` or can be another RecordPath.