Github user mattyb149 commented on the issue:
https://github.com/apache/nifi/pull/2507
I think for the setQueryTimeout() we should use the approach
[here](https://github.com/apache/nifi/pull/2138/files#diff-fd2dd08c4940d5ee57f9d711ce6b426fR99).
It was decided a while back that we should enforce setQueryTimeout() instead
of just proceeding on if the driver doesn't support it. What the code in the
other PR (#2138) does is to try to call setQueryTimeout on a Statement during
customValidate, and will render the processor invalid if the user tries to set
a Query Timeout to something other than zero when the driver doesn't support it.
---