]> source.dussan.org Git - sonarqube.git/commit
SONAR-7493 fix size of ISSUES.MESSAGE col on Orale
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 9 May 2016 21:36:26 +0000 (23:36 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 13 May 2016 09:51:30 +0000 (11:51 +0200)
commitecd8c71b84b8691dd9c1d40f349f5b11a35c28cf
tree50ab4bf36e44b3f3d206460e06c7972799e919eb
parentaac58f3d481f23639a900489cd52857c0f16b1b2
SONAR-7493 fix size of ISSUES.MESSAGE col on Orale

The length of this VARCHAR(4000) depends on runtime
(4000 bytes or 4000 chars) as unit is not enforced
during creation of column
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1151_fix_length_of_issues_message_on_oracle.rb [new file with mode: 0644]
sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java
sonar-db/src/main/java/org/sonar/db/version/v56/FixLengthOfIssuesMessageOnOracle.java [new file with mode: 0644]
sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql
sonar-db/src/test/java/org/sonar/db/version/v56/FixLengthOfIssuesMessageOnOracleTest.java [new file with mode: 0644]