From 9fb3a51ae3131581c7a21af6732ad227964d2f3d Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 30 Apr 2018 22:29:19 +0200 Subject: [PATCH] SONAR-10587 fix another incompatibility with Oracle --- .../src/main/resources/org/sonar/db/issue/IssueMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-db-dao/src/main/resources/org/sonar/db/issue/IssueMapper.xml b/server/sonar-db-dao/src/main/resources/org/sonar/db/issue/IssueMapper.xml index 696ccef78f7..b31ee48a802 100644 --- a/server/sonar-db-dao/src/main/resources/org/sonar/db/issue/IssueMapper.xml +++ b/server/sonar-db-dao/src/main/resources/org/sonar/db/issue/IssueMapper.xml @@ -204,7 +204,7 @@ inner join projects p on p.uuid=i.component_uuid inner join projects root on root.uuid=i.project_uuid where - r.is_external = 'false' and + r.is_external = ${_false} and i.component_uuid = #{componentUuid,jdbcType=VARCHAR} and i.status <> 'CLOSED' -- 2.39.5