aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-05-03 16:40:45 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2013-05-03 16:40:59 +0200
commit3450dfbda9e6bc0af1af6cd5b228cd999ffd15a3 (patch)
treee5df3cbd38dc996d24e55971c57cea5f2683aae2
parentb7d86ee8f43a1654050cffbbc536f08adb1fbe94 (diff)
downloadsonarqube-3450dfbda9e6bc0af1af6cd5b228cd999ffd15a3.tar.gz
sonarqube-3450dfbda9e6bc0af1af6cd5b228cd999ffd15a3.zip
SONAR-3755 fix insertion of issues on oracle
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml3
1 files changed, 2 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 06513125c77..d96764e5c4c 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
@@ -47,7 +47,8 @@
select issues_seq.NEXTVAL from DUAL
</selectKey>
INSERT INTO issues (id, kee, resource_id, rule_id, severity, manual_severity, manual_issue, description, line, cost, status,
- resolution, checksum, user_login, assignee_login, author_login, attributes, created_at, updated_at, closed_at)
+ resolution, checksum, user_login, assignee_login, author_login, attributes, issue_creation_date, issue_update_date,
+ issue_close_date, created_at, updated_at)
VALUES (#{id}, #{kee}, #{resourceId}, #{ruleId}, #{severity}, #{manualSeverity}, #{manualIssue}, #{description}, #{line}, #{cost}, #{status},
#{resolution}, #{checksum}, #{userLogin}, #{assignee}, #{authorLogin}, #{attributes}, #{issueCreationDate},
#{issueUpdateDate}, #{issueCloseDate}, #{createdAt}, #{updatedAt})