From 764185d9211229e5dcafe885cfdcbfbfadf54ce7 Mon Sep 17 00:00:00 2001 From: Eric Hartmann Date: Wed, 14 Jun 2017 13:24:39 +0200 Subject: SONAR-9427 Improve performance on quality profile changelog --- .../org/sonar/db/qualityprofile/QProfileChangeMapper.xml | 10 +++++----- .../org/sonar/db/qualityprofile/QProfileChangeDaoTest.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'server/sonar-db-dao') diff --git a/server/sonar-db-dao/src/main/resources/org/sonar/db/qualityprofile/QProfileChangeMapper.xml b/server/sonar-db-dao/src/main/resources/org/sonar/db/qualityprofile/QProfileChangeMapper.xml index 77ebd8602b8..172b7c9a8ea 100644 --- a/server/sonar-db-dao/src/main/resources/org/sonar/db/qualityprofile/QProfileChangeMapper.xml +++ b/server/sonar-db-dao/src/main/resources/org/sonar/db/qualityprofile/QProfileChangeMapper.xml @@ -5,7 +5,7 @@ qpc.kee as "uuid", - qpc.qprofile_key as rulesProfileUuid, + qpc.rules_profile_uuid as rulesProfileUuid, qpc.created_at as createdAt, qpc.user_login as login, qpc.change_type as changeType, @@ -16,7 +16,7 @@ insert into qprofile_changes ( kee, - qprofile_key, + rules_profile_uuid, created_at, user_login, change_type, @@ -34,7 +34,7 @@