aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-08-05 12:30:43 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-08-05 19:32:13 +0200
commitdc90d64eae1daddace35cdc5782985749768e906 (patch)
tree8412655bff68f2431a0797c00f461230be6cb1ce /sonar-db
parent12324c45bafa466d77396fde284e941d08f44205 (diff)
downloadsonarqube-dc90d64eae1daddace35cdc5782985749768e906.tar.gz
sonarqube-dc90d64eae1daddace35cdc5782985749768e906.zip
Gix compatibility of IssueMapper with postgres
Diffstat (limited to 'sonar-db')
-rw-r--r--sonar-db/src/main/resources/org/sonar/db/issue/IssueMapper.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-db/src/main/resources/org/sonar/db/issue/IssueMapper.xml b/sonar-db/src/main/resources/org/sonar/db/issue/IssueMapper.xml
index 37133139051..de76d8cd205 100644
--- a/sonar-db/src/main/resources/org/sonar/db/issue/IssueMapper.xml
+++ b/sonar-db/src/main/resources/org/sonar/db/issue/IssueMapper.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mappei.dtd">
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.sonar.db.issue.IssueMapper">
@@ -74,7 +74,7 @@
VALUES (#{kee,jdbcType=VARCHAR}, #{ruleId,jdbcType=INTEGER}, #{actionPlanKey,jdbcType=VARCHAR},
#{severity,jdbcType=VARCHAR},
#{manualSeverity,jdbcType=BOOLEAN}, #{message,jdbcType=VARCHAR}, #{line,jdbcType=INTEGER},
- #{locations,jdbcType=BLOB},
+ #{locations,jdbcType=BINARY},
#{effortToFix,jdbcType=DOUBLE}, #{debt,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR},
#{tagsString,jdbcType=VARCHAR}, #{resolution,jdbcType=VARCHAR}, #{checksum,jdbcType=VARCHAR},
#{reporter,jdbcType=VARCHAR}, #{assignee,jdbcType=VARCHAR}, #{authorLogin,jdbcType=VARCHAR},
@@ -94,7 +94,7 @@
manual_severity=#{manualSeverity,jdbcType=BOOLEAN},
message=#{message,jdbcType=VARCHAR},
line=#{line,jdbcType=INTEGER},
- locations=#{locations,jdbcType=BLOB},
+ locations=#{locations,jdbcType=BINARY},
effort_to_fix=#{effortToFix,jdbcType=DOUBLE},
technical_debt=#{debt,jdbcType=INTEGER},
status=#{status,jdbcType=VARCHAR},
@@ -123,7 +123,7 @@
manual_severity=#{manualSeverity,jdbcType=BOOLEAN},
message=#{message,jdbcType=VARCHAR},
line=#{line,jdbcType=INTEGER},
- locations=#{locations,jdbcType=BLOB},
+ locations=#{locations,jdbcType=BINARY},
effort_to_fix=#{effortToFix,jdbcType=DOUBLE},
technical_debt=#{debt,jdbcType=INTEGER},
status=#{status,jdbcType=VARCHAR},