You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I mentioned in #477, a Protobuf message containing a repeated field with the customtype option set does not generate a slice of pointers.
Another observation related to customtype is that it doesn't generate a slice of pointers for repeated customtype fields. repeated common.BigDecimal repeated_big_decimal_value = 37 [(gogoproto.customtype) = "go-decimal/pbdecimal.Decimal"]; generates RepeatedBigDecimalValue []go_decimal_pbdecimal.Decimal. I expected RepeatedBigDecimalValue []*go_decimal_pbdecimal.Decimal But I can open a separate issue for this matter.
The text was updated successfully, but these errors were encountered:
jmarais
added a commit
to jmarais/protobuf
that referenced
this issue
Sep 10, 2018
As I mentioned in #477, a Protobuf message containing a repeated field with the
customtype
option set does not generate a slice of pointers.The text was updated successfully, but these errors were encountered: