diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-04-20 11:16:25 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-04-28 12:17:59 +0200 |
commit | aadd2ccda0a44307318c9f459089fe69fdac444a (patch) | |
tree | 8a1356bfd28fe45ec822f94695470c1bea451b3a /sonar-batch | |
parent | 9595b009028629fc1a16ba833151a816d4456d70 (diff) | |
download | sonarqube-aadd2ccda0a44307318c9f459089fe69fdac444a.tar.gz sonarqube-aadd2ccda0a44307318c9f459089fe69fdac444a.zip |
add new column data_type in file_sources table - SONAR-6255
Diffstat (limited to 'sonar-batch')
4 files changed, 5 insertions, 5 deletions
diff --git a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/file_sources_missing_src_hash.xml b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/file_sources_missing_src_hash.xml index 4879192217c..9fac445981b 100644 --- a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/file_sources_missing_src_hash.xml +++ b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/file_sources_missing_src_hash.xml @@ -4,6 +4,6 @@ line_hashes="8d7b3d6b83c0a517eac07e1aac94b773 9a0364b9e99bb480dd25e1f0284c8555" data_hash="0263047cd758c68c27683625f072f010" src_hash="[null]" - created_at="1412952242000" updated_at="1412952242000"/> + created_at="1412952242000" updated_at="1412952242000" data_type="SOURCE" /> </dataset> diff --git a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/shared.xml b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/shared.xml index 1223c1869cd..dd27702d8b1 100644 --- a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/shared.xml +++ b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/shared.xml @@ -4,6 +4,6 @@ line_hashes="8d7b3d6b83c0a517eac07e1aac94b773 9a0364b9e99bb480dd25e1f0284c8555" data_hash="0263047cd758c68c27683625f072f010" src_hash="123456" - created_at="1412952242000" updated_at="1412952242000"/> + created_at="1412952242000" updated_at="1412952242000" data_type="SOURCE" /> </dataset> diff --git a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistDontTouchUnchanged-result.xml b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistDontTouchUnchanged-result.xml index b70d53511d0..b5e2373c682 100644 --- a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistDontTouchUnchanged-result.xml +++ b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistDontTouchUnchanged-result.xml @@ -5,6 +5,6 @@ line_hashes="8d7b3d6b83c0a517eac07e1aac94b773 9a0364b9e99bb480dd25e1f0284c8555" data_hash="0263047cd758c68c27683625f072f010" src_hash="123456" - created_at="1412952242000" updated_at="1412952242000"/> + created_at="1412952242000" updated_at="1412952242000" data_type="SOURCE" /> </dataset> diff --git a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistEmptyFile-result.xml b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistEmptyFile-result.xml index 9b3a8b549a8..6516bd139ca 100644 --- a/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistEmptyFile-result.xml +++ b/sonar-batch/src/test/resources/org/sonar/batch/index/SourcePersisterTest/testPersistEmptyFile-result.xml @@ -4,12 +4,12 @@ line_hashes="8d7b3d6b83c0a517eac07e1aac94b773 9a0364b9e99bb480dd25e1f0284c8555" data_hash="0263047cd758c68c27683625f072f010" src_hash="123456" - created_at="1412952242000" updated_at="1412952242000"/> + created_at="1412952242000" updated_at="1412952242000" data_type="SOURCE" /> <file_sources id="102" project_uuid="projectUuid" file_uuid="uuidempty" binary_data="[null]" line_hashes="[null]" src_hash="abcd" - data_hash="0" created_at="1414597442000" updated_at="1414597442000"/> + data_hash="0" created_at="1414597442000" updated_at="1414597442000" data_type="SOURCE" /> </dataset> |