Github user patricker commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3156#discussion_r232072895
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractExecuteSQL.java
---
@@ -94,6 +106,16 @@
.expressionLanguageSupported(ExpressionLanguageScope.FLOWFILE_ATTRIBUTES)
.build();
+ public static final PropertyDescriptor SQL_POST_QUERY = new
PropertyDescriptor.Builder()
+ .name("sql-post-query")
+ .displayName("SQL Post-Query")
+ .description("SQL post-query to execute. Semicolon-delimited
list of queries. "
--- End diff --
"A semicolon-delimited list of queries executed after the main SQL query is
executed. Results/outputs from these queries will be suppressed if there are no
errors."
---