This is an automated email from the ASF dual-hosted git repository.
exceptionfactory 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 c1f47dc397 NIFI-14776 Changed Catalog Display Name to Database in
PutDatabaseRecord (#10120)
c1f47dc397 is described below
commit c1f47dc39719730025ea580ba295090281f1c03d
Author: Pierre Villard <[email protected]>
AuthorDate: Wed Jul 23 01:50:35 2025 +0200
NIFI-14776 Changed Catalog Display Name to Database in PutDatabaseRecord
(#10120)
Signed-off-by: David Handermann <[email protected]>
---
.../org/apache/nifi/processors/standard/PutDatabaseRecord.java | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
index eda3f4aba9..bf8f214ca2 100644
---
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
+++
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
@@ -228,9 +228,12 @@ public class PutDatabaseRecord extends AbstractProcessor {
static final PropertyDescriptor CATALOG_NAME = new Builder()
.name("put-db-record-catalog-name")
- .displayName("Catalog Name")
- .description("The name of the catalog that the statement should
update. This may not apply for the database that you are updating. In this
case, leave the field empty. Note that if the "
- + "property is set and the database is case-sensitive, the
catalog name must match the database's catalog name exactly.")
+ .displayName("Database Name")
+ .description("""
+ The name of the database (or the name of the catalog,
depending on the destination system) that the statement should update. This may
not apply
+ for the database that you are updating. In this case,
leave the field empty. Note that if the property is set and the database is
case-sensitive,
+ the catalog name must match the database's catalog name
exactly.
+ """)
.required(false)
.expressionLanguageSupported(FLOWFILE_ATTRIBUTES)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)