Repository: nifi Updated Branches: refs/heads/master 47d715741 -> 81aca7b97
NIFI-3302 Remove 'accepts incoming FlowFile' doc from QDT Signed-off-by: Matt Burgess <[email protected]> This closes #1406 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/81aca7b9 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/81aca7b9 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/81aca7b9 Branch: refs/heads/master Commit: 81aca7b97d04023a17772e89c68695d061140594 Parents: 47d7157 Author: Joey Frazee <[email protected]> Authored: Sun Jan 8 17:44:08 2017 -0800 Committer: Matt Burgess <[email protected]> Committed: Mon Jan 9 10:40:29 2017 -0500 ---------------------------------------------------------------------- .../org/apache/nifi/processors/standard/QueryDatabaseTable.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/81aca7b9/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java index 00302c9..2fddb87 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java @@ -72,9 +72,8 @@ import java.util.stream.IntStream; @Tags({"sql", "select", "jdbc", "query", "database"}) @CapabilityDescription("Execute provided SQL select query. Query result will be converted to Avro format." + " Streaming is used so arbitrarily large result sets are supported. This processor can be scheduled to run on " - + "a timer, or cron expression, using the standard scheduling methods, or it can be triggered by an incoming FlowFile. " - + "If it is triggered by an incoming FlowFile, then attributes of that FlowFile will be available when evaluating the " - + "select query. FlowFile attribute 'querydbtable.row.count' indicates how many rows were selected.") + + "a timer or cron expression, using the standard scheduling methods. FlowFile attribute " + + "'querydbtable.row.count' indicates how many rows were selected.") @Stateful(scopes = Scope.CLUSTER, description = "After performing a query on the specified table, the maximum values for " + "the specified column(s) will be retained for use in future executions of the query. This allows the Processor " + "to fetch only those records that have max values greater than the retained values. This can be used for "
