]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3755 search by creation date should be >= instead of >
authorSimon Brandhof <simon.brandhof@gmail.com>
Fri, 17 May 2013 16:03:53 +0000 (18:03 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Fri, 17 May 2013 16:03:53 +0000 (18:03 +0200)
sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml

index 57f50795d5896eeb0a71e5cfb3dc44f64e176275..36ce2d7dde2b8d6d7b8537d45aea2c2e2f30590d 100644 (file)
         </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}