aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2014-09-16 10:35:03 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2014-09-16 10:35:03 +0200
commit78f331f8f0264b56a9951f50868927b6fb66c6c4 (patch)
tree67e3d747b01333579104afeccd1c571b2649df6e
parentadd64436be2fc275aa2578dc6a4eeab427b41208 (diff)
downloadsonarqube-78f331f8f0264b56a9951f50868927b6fb66c6c4.tar.gz
sonarqube-78f331f8f0264b56a9951f50868927b6fb66c6c4.zip
SONAR-5580 fix compatibility with Oracle
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml b/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml
index eeb24110187..acd7f5ba775 100644
--- a/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml
+++ b/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml
@@ -41,7 +41,7 @@
<select id="selectMeasuresOnDeletedQualityProfiles" resultType="long">
select pm.id from project_measures pm
- inner join snapshots as s on s.id=pm.snapshot_id and s.islast=${_true}
+ inner join snapshots s on s.id=pm.snapshot_id and s.islast=${_true}
where
pm.metric_id=(select id from metrics where name='quality_profiles')
and pm.value is not null