PageRenderTime 51ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.1-rc2/hive/external/serde/if/test/complexpb.proto

#
Protocol Buffers | 15 lines | 13 code | 2 blank | 0 comment | 0 complexity | 7f6806bab06928b6bc7c862612f9151a MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. package org.apache.hadoop.hive.serde2.proto.test;
  2. message IntString {
  3. optional int32 myint = 1;
  4. optional string myString = 2;
  5. optional int32 underscore_int = 3;
  6. };
  7. message Complex {
  8. optional int32 aint = 1;
  9. optional string aString = 2;
  10. repeated int32 lint = 3;
  11. repeated string lString = 4;
  12. repeated IntString lintString = 5;
  13. };