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 0c540dfbcb NIFI-15639: AbstractExecuteSQL will run more than just 
select queries
0c540dfbcb is described below

commit 0c540dfbcbf713b6f3fc69b4918b1f9b05f7e6ae
Author: Bob Paulin <[email protected]>
AuthorDate: Mon Feb 23 15:11:51 2026 -0600

    NIFI-15639: AbstractExecuteSQL will run more than just select queries
    
    * Doc should not create the impression with users that only select
    queries work.
    
    This closes #10930.
    
    Signed-off-by: Pierre Villard <[email protected]>
---
 .../java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java
 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java
index 8c0c8bd316..7e96a57d60 100644
--- 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java
+++ 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java
@@ -111,7 +111,7 @@ public abstract class AbstractExecuteSQL extends 
AbstractProcessor {
             .description("The SQL query to execute. The query can be empty, a 
constant value, or built from attributes "
                     + "using Expression Language. If this property is 
specified, it will be used regardless of the content of "
                     + "incoming flowfiles. If this property is empty, the 
content of the incoming flow file is expected "
-                    + "to contain a valid SQL select query, to be issued by 
the processor to the database. Note that Expression "
+                    + "to contain a valid SQL query, to be issued by the 
processor to the database. Note that Expression "
                     + "Language is not evaluated for flow file contents.")
             .required(false)
             .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)

Reply via email to