Giter VIP home page Giter VIP logo

Comments (5)

awalterschulze avatar awalterschulze commented on May 18, 2024

This should be reported in another issue, but you could check out in test/thetest.proto

message NidRepCustom {
    repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false];
    repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false];
}

The equal method does the following

func (uuid Uuid) Equal(other Uuid) bool {
    return bytes.Equal(uuid[0:], other[0:])
}

Does this help?

from protobuf.

andreimatei avatar andreimatei commented on May 18, 2024

I've run into problems with proto.Equal() and a proto where we use gogoproto.customtype for a bytes field. I hope this is the right place to report.

This is the proto:
https://github.com/cockroachdb/cockroach/blob/befea82/pkg/roachpb/metadata.proto#L73

And the error is:

panic: interface conversion: interface {} is roachpb.RKey, not []uint8

It's because of this special handling of bytes fields in proto.Equal:
https://github.com/golang/protobuf/blob/ef00c02/proto/equal.go#L218

Any ideas for a work-around?

from protobuf.

awalterschulze avatar awalterschulze commented on May 18, 2024

You are welcome to contribute a fix with a test, but an easier fix might be to just generate equal methods.
Generating equal methods can be done in two ways:

  1. Using the gogoprotobuf equal extension https://godoc.org/github.com/gogo/protobuf/plugin/equal
  2. Using my new project https://github.com/awalterschulze/goderive

from protobuf.

andreimatei avatar andreimatei commented on May 18, 2024

Thanks! The equal extension looks good! But I've run into another issue with it, reported in #283.

from protobuf.

tigrannajaryan avatar tigrannajaryan commented on May 18, 2024

When using a customtype that is an array proto.Equal does not work, outputs log message proto: don't know how to compare ....

The switch at

switch v1.Kind() {
does not appear to handle reflect.Array case which explains why this does not work.

Before digging into the code I also tried defining Equal func for my customtype since I was expecting that it may be used, but proto.Equal does not appear to try to use it at all.

from protobuf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.