Lucas Bremgartner
Lucas Bremgartner
In order to allow nullable inputs for sql functions, the this line (https://github.com/kyleconroy/sqlc/blob/master/internal/compiler/resolve.go#L267) would needed to be changed returning `false` instead of `true`. But this change obviously breaks several unit...
If you are looking for a way to process Jinja2 templates with Go, have a look at https://github.com/noirbizarre/gonja. The documentation is not up to date, but the above mentioned string...
Hi @lmenezes Thanks for your wonderful tool to monitor Elasticsearch clusters. We happily use it for years now and it has always been very helpful and without any problems. Over...
@cristaloleg could you already look into this?
Based on the benchamrks in [110055](https://go-review.googlesource.com/c/go/+/110055/) I think it is the oposite. As said, the `for ... range` is detected by the compiler and replaced with highly optimized code to...
The difficult part maybe is to detect cases, where `m` is in fact not `nil` before the assignment of the new map.
Results will be especially interesting, if someone overwrites things like [`rsa.ErrVerification`](https://golang.org/pkg/crypto/rsa/#pkg-variables).
This is not something that is planned to be implemented. See here for an example, how this can be achieved with the current implementation: https://github.com/mna/pigeon/blob/master/examples/calculator/calculator.peg If you feel like implementing...
@felipellrocha we are aware of the fact, that dealing with the `interface{}` everywhere is not funny and therefore, having static typing is on the wishlist. Feel free to move forward...
Hi @delaneyj Interesting question. I doubt, that generics alone do improve the situation. I assume, that an extension of the PEG grammar would be needed as well. But I have...