Fabian Holler

Results 78 issues of Fabian Holler

When DialConfig() is called, no default value is set for the Config.heartbeat and Config.Locale settings when they are 0. Export the Dialer default values, so users can create custom DialConfigs...

I have a field in my postgreSQL table that is of type TEXT[]. Xo generates a model for it where the field is of type []sql.NullString. When I do an...

Since Go 1.16, which is also the documented min. version, the recommended way to build and install applications is "go install"[^1]. Update the readme accordingly. [^1]: https://go.dev/doc/go1.16#go-command

Hello, I wonder what the intended way is to build a WHERE statements to match all primary key in a template like: `WHERE id1 = $1 AND id2 = $2...

Hello, is it possible to specify that a custom Go Type should be used for a postgresql type instead of the default? For example I would like to generate code...

Hello, we have a PostgreSQL table that is similar to: ```sql create table xotest (id integer primary key, name varchar, constraint name_uniq UNIQUE(name)); create extension pg_trgm; CREATE INDEX name_trgm_idx ON...

Hello, I'm working on a package that wraps an sql.Driver and adds functionality. To test it, I'm trying to use go-sqlmock. I'm running into the issue that if I wrap...

I would like to add additional fixed tags per GRPC ClientHandler to spans like "component = grpc". A way to implement it could be to introduce an additional ClientOption to...

I tried to introduce http request tracing in one of our applications and stumpled about a nil pointer dereference that was triggered by a testcase. The nil pointer dereference can...

https://github.com/spf13/cobra/releases - support generating and installing bashcompletions for zsh and fish shell - disable the default "completions" subcommand registered in the new cobra release CLI could be: `baur init completion...

enhancement