Aleksandr Razumov
Aleksandr Razumov
IMO just failing whole batch is ok
I've managed to workaround this with `proto.Alias` and [help of documentation](https://clickhouse.com/docs/en/sql-reference/data-types/decimal/#parameters): ```go func Test(t *testing.T) { conn := Conn(t) createTable := Query{ Body: "CREATE TABLE test_table (v Decimal32(2)) ENGINE =...
Yes, inference is not fully implemented. Not sure how to do it, probably with reflect.
cc @tdakkota
You can use draft PRs for that btw: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request
> The best solution is to generate already formatted code. This is actually more annoying to do than waiting for code generation. We are operating on very big schemas in...
@dependabot rebase
Don't be shy to ignore false positives. Here is example from one of my projects: ```yml issues: exclude-use-default: false exclude-rules: # TODO(ernado): Should we refactor Parse() functions? - path: exchange...
Also [ruleguard](https://github.com/quasilyte/go-ruleguard) is interesting for advanced linting, you can write custom linting rules with DSL.