Glen Mailer

Results 160 comments of Glen Mailer

If `.Upsert()` accepted `...QueryMods` (or similar for just Where clauses?) then I think it wouldn't be a breaking API change? I've just run into a similar but distinct case where...

I think this becomes quite complex if there are multiple `oneof` fields on a message. I think ideally the discriminated union should be inside the `body` property, and would need...

Putting the question of extra generated code to one side for a moment; Is there a recommended way to compare protobuf types for value-equality?

Thanks - I'm happy to submit an appropriate PR if I get a rough steer on the direction and whether the maintainers would accept it.

I think that sounds sensible - I expect it would need to be an option to Transform()? To be a standalone option it would need to transform the protocmp.Message back...

I had a few minutes spare so I cobbled together something that basically works: https://github.com/glenjamin/protobuf-go/pull/1 I'll come back and add input type validation, expand the tests then submit via Gerrit...

In the mean time, does anyone know if there's a way to configure `docker compose` completion to fall back to the old `docker-compose` completion?

The best workaround for this I've ended up with takes advantage of the fact that whatever you pass into `init` gets rememebered by terraform. So instead of `terraform init`, I...

Oh, I hadn't realised it was that simple - I glanced at the code in https://github.com/weavejester/eftest/blob/master/lein-eftest/src/leiningen/eftest.clj#L24 and my eyes wen't fuzzy 😄

Ok, I ended up doing something like this, which feels a little bit wordy. ```clj (as-> (find-tests "test") ts (filter (complement (comp :integration meta)) ts) (run-tests ts {:multithread? false})) ```...