commit | 38bd636a1883dbbf4d22ada48e856eaf6243d32e | [log] [tgz] |
---|---|---|
author | Yuri Melnikov <Yuri.Miller@icloud.com> | Wed Sep 08 18:46:12 2021 -0400 |
committer | Yuxuan 'fishy' Wang <fishywang@gmail.com> | Thu Sep 09 22:19:17 2021 -0700 |
tree | 5651a3891703e08af1049aba9d2d21c053a9f79a | |
parent | 0cc06506b807a2d7fa5183a207e1ce3f9727cf00 [diff] [blame] |
THRIFT-4868: Golang: Fix compilation for optional set<binary> with default values
diff --git a/test/ThriftTest.thrift b/test/ThriftTest.thrift index ac49aee..4a1045f 100644 --- a/test/ThriftTest.thrift +++ b/test/ThriftTest.thrift
@@ -411,3 +411,8 @@ struct OptionalSetDefaultTest { 1: optional set<string> with_default = [ "test" ] } + +struct OptionalBinary { + 1: optional set<binary> bin_set = {} + 2: optional map<binary,i32> bin_map = {} +}