diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-30 18:31:45 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-30 18:31:45 +0200 |
commit | 7b45121faacfc19e69438f783d44ce50d809fcd2 (patch) | |
tree | 120f8f4722c0b73f8289ef2e548b06a3a8431ec7 /sonar-db/src/main/protobuf | |
parent | ca7396b9e6815c2e70d410f3b634fc10528a65ec (diff) | |
download | sonarqube-7b45121faacfc19e69438f783d44ce50d809fcd2.tar.gz sonarqube-7b45121faacfc19e69438f783d44ce50d809fcd2.zip |
Prepare upgrade to protobuf 3
Files .proto must declare: syntax = "proto2";
Diffstat (limited to 'sonar-db/src/main/protobuf')
-rw-r--r-- | sonar-db/src/main/protobuf/file_sources.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-db/src/main/protobuf/file_sources.proto b/sonar-db/src/main/protobuf/file_sources.proto index feafa462ea4..e174cc36b4a 100644 --- a/sonar-db/src/main/protobuf/file_sources.proto +++ b/sonar-db/src/main/protobuf/file_sources.proto @@ -20,6 +20,8 @@ // Structure of db column FILE_SOURCES.BINARY_DATA +syntax = "proto2"; + // Package must not be changed for backward-compatibility // with the DB rows inserted in DB before 5.2 package org.sonar.server.source.db; |