Closed
Description
As of v5.0.0-RC1, the counting methods in various DAOs (like JobInstanceDao#getJobInstanceCount
and StepExecutionDao#countStepExecutions
) return int
instead of long
, which is problematic for some DAOs implementations that use long
to count records in the databases (MongoDB is such an example).
To prevent data loss while converting long
to int
, this issue is to change the return type of counting methods in various DAOs from int
to long
.