Jack Juda

Results 9 comments of Jack Juda

If this issue is not in development, I can take a stab at it, it would come in handy.

Oh I see, #277 seems like a it should be resolved before this issue. If it’s not assigned to anyone, I can migrate over to opentracing-go

However, pushing entire request in the spawn may cause unnecessarily large amount of data collection. Do you think using field option is a worthy addition? ``` syntax = "proto3"; import...

Which version are you using ?

I predominately work with Postgres, but From what I remember, MySQL needs a prepare statement to return correct data type. When using query() directly, the MySQL will return your data...

I am aware of this change, the generator has moved to the [protogen package](https://google.golang.org/protobuf/compiler/protogen). Many projects which depended on the generator have this issue (gateway, argo). I am currently refactoring...

what is the underlying data type in your sql DB ?

which database are you using. In addition, what is the underlying data type of the Point type in the database?

That's right, gorm.AutoMigrate does now work as intended. Generated tables have columns ordered alphabetically, which is problem if schema/gorm object is to change on next deployment. To resolve this, I...