Github user patricker commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2162#discussion_r166499522
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java
---
@@ -150,8 +151,13 @@ public QueryDatabaseTable() {
final List<PropertyDescriptor> pds = new ArrayList<>();
pds.add(DBCP_SERVICE);
pds.add(DB_TYPE);
- pds.add(TABLE_NAME);
+ pds.add(new PropertyDescriptor.Builder()
+ .fromPropertyDescriptor(TABLE_NAME)
+ .description("The name of the database table to be
queried. When a custom query is used, this property is used to alias the query
and appears as an attribute on the FlowFile.")
+ .build());
--- End diff --
Good catch.
---