You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while (rs.next() && nextTriggers.size() <= maxCount) {
In cases where the JDBC driver does not respect PreparedStatement.setFetchSize and PreparedStatement.setMaxRows, the current logic may return more than maxCount results.
quartz/quartz-core/src/main/java/org/quartz/impl/jdbcjobstore/StdJDBCDelegate.java
Line 2615 in ce1650f
In cases where the JDBC driver does not respect PreparedStatement.setFetchSize and PreparedStatement.setMaxRows, the current logic may return more than maxCount results.