This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 939b794e6f NIFI-14094 Corrected reference to Record Path concat
function to be lowercase instead of uppercase.
939b794e6f is described below
commit 939b794e6fadef1a1b06e1c2e22857bdd277f322
Author: dan-s1 <[email protected]>
AuthorDate: Mon Mar 24 15:28:27 2025 +0000
NIFI-14094 Corrected reference to Record Path concat function to be
lowercase instead of uppercase.
Signed-off-by: Pierre Villard <[email protected]>
This closes #9818.
---
.../main/java/org/apache/nifi/processors/standard/UpdateRecord.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateRecord.java
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateRecord.java
index 85046b4922..ed0c795936 100644
---
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateRecord.java
+++
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateRecord.java
@@ -84,9 +84,9 @@ import java.util.stream.Stream;
"Replacement Value Strategy" = "Record Path Value"
A single additional property is added to the Processor. The name of
the property is a RecordPath identifying the field to place the result in.
- The value of the property uses the CONCAT Record Path function to
concatenate multiple values together, potentially using other string literal
values.
+ The value of the property uses the concat Record Path function to
concatenate multiple values together, potentially using other string literal
values.
For example, to combine the `title`, `firstName` and `lastName` fields
into a single field named `fullName`, we add a property with the name
`/fullName` \
- and a value of `CONCAT(/title, ' ', /firstName, ' ', /lastName)`
+ and a value of `concat(/title, ' ', /firstName, ' ', /lastName)`
"""
)
@UseCase(