Github user mattyb149 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/1547#discussion_r103546463
  
    --- Diff: 
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/QueryDatabaseTable.java
 ---
    @@ -437,7 +439,7 @@ public void processRow(ResultSet resultSet) throws 
IOException {
                     if (nrOfColumns > 0) {
                         for (int i = 1; i <= nrOfColumns; i++) {
                             String colName = 
meta.getColumnName(i).toLowerCase();
    -                        String fullyQualifiedMaxValueKey = 
getStateKey(meta.getTableName(i), colName);
    +                        String fullyQualifiedMaxValueKey = 
getStateKey(tableName, colName);
    --- End diff --
    
    Ugh, their driver doesn't include table name info in the result set?! I'll 
give this a try on MySQL, Oracle, and Postgres as well, to make sure there are 
no issues with case sensitivity, etc.  Good catch thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to