diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-17 18:03:53 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-17 18:03:53 +0200 |
commit | 4507eb7a4b64a8d3b973d6878c257cb6eaeec450 (patch) | |
tree | 528851fcef4441d8fe664345060e5fcac18d5bab /sonar-core | |
parent | 30e3216e8b60b0b3baa591a84351f95fdcdb5882 (diff) | |
download | sonarqube-4507eb7a4b64a8d3b973d6878c257cb6eaeec450.tar.gz sonarqube-4507eb7a4b64a8d3b973d6878c257cb6eaeec450.zip |
SONAR-3755 search by creation date should be >= instead of >
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml b/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml index 57f50795d58..36ce2d7dde2 100644 --- a/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml +++ b/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml @@ -235,7 +235,7 @@ </foreach> </if> <if test="createdAfter != null"> - and i.issue_creation_date > #{createdAfter} + and i.issue_creation_date >= #{createdAfter} </if> <if test="createdBefore != null"> and i.issue_creation_date < #{createdBefore} |