aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-05-17 18:03:53 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2013-05-17 18:03:53 +0200
commit4507eb7a4b64a8d3b973d6878c257cb6eaeec450 (patch)
tree528851fcef4441d8fe664345060e5fcac18d5bab /sonar-core
parent30e3216e8b60b0b3baa591a84351f95fdcdb5882 (diff)
downloadsonarqube-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.xml2
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 &gt; #{createdAfter}
+ and i.issue_creation_date &gt;= #{createdAfter}
</if>
<if test="createdBefore != null">
and i.issue_creation_date &lt; #{createdBefore}