GitHub user combineads opened a pull request:

    https://github.com/apache/nifi/pull/1101

    NIFI-2866 The Initial Max Value of QueryDatabaseTable won't be case

    sensitive
    
    Now, the Initial Max Value of QueryDatabaseTable is allowed the only 
lowercase so I think to change the below code, it added .toLowerCase() method.
    for(final Map.Entry<String,String> maxProp : maxValueProperties.entrySet()){
    if (!statePropertyMap.containsKey(maxProp.getKey().toLowerCase()))
    { statePropertyMap.put(maxProp.getKey().toLowerCase(), maxProp.getValue()); 
}
    }
    When I set the property that is initial.maxvalue.UPDATE_TIME, 
QueryDatabaseTable doesn't have WHERE clause with UPDATE_TIME.
    Thanks.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/combineads/nifi NIFI-2866

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/nifi/pull/1101.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #1101
    
----
commit 821c5c680ba00709198a6e208179672d997b6073
Author: Byunghwa Yun <[email protected]>
Date:   2016-10-05T03:52:53Z

    NIFI-2866 The Initial Max Value of QueryDatabaseTable won't be case
    sensitive

----


---
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