Add new test proto messages that use map fields Directly, and transitively.
----Release Notes---- [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=115280894 Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/2e171b50 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/2e171b50 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/2e171b50 Branch: refs/heads/master Commit: 2e171b509ebe163ac54332eec626dccdfa18c9ad Parents: 7ff52a0 Author: dhalperi <[email protected]> Authored: Mon Feb 22 15:59:23 2016 -0800 Committer: Davor Bonaci <[email protected]> Committed: Thu Feb 25 23:58:25 2016 -0800 ---------------------------------------------------------------------- sdk/src/main/proto/proto2_coder_test_messages.proto | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/2e171b50/sdk/src/main/proto/proto2_coder_test_messages.proto ---------------------------------------------------------------------- diff --git a/sdk/src/main/proto/proto2_coder_test_messages.proto b/sdk/src/main/proto/proto2_coder_test_messages.proto index 56efd89..eb3c3df 100644 --- a/sdk/src/main/proto/proto2_coder_test_messages.proto +++ b/sdk/src/main/proto/proto2_coder_test_messages.proto @@ -41,3 +41,11 @@ extend MessageC { optional MessageA field1 = 101; optional MessageB field2 = 102; } + +message MessageWithMap { + map<string, MessageA> field1 = 1; +} + +message ReferencesMessageWithMap { + repeated MessageWithMap field1 = 1; +}
