Kyle Gray
Kyle Gray
This is fixed in [v1.23.0](https://docs.sqlc.dev/en/latest/reference/changelog.html#v1-23-0) by enabling the [database-backed query analyzer](https://docs.sqlc.dev/en/latest/howto/generate.html#enhanced-analysis-with-managed-databases). We added a [test case](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/cte_left_join/postgresql/pgx) for this issue so it won’t break in the future. You can play around...
Going to close this out as we have a pretty good workaround.
Agreed that this should be left up to the migration tools themselves. The other option would be to parse the full sql file before we remove the down migrations. Going...
Okay, all fixed now. I also automated the process so we'll have `darwin_arm64` releases going forward. Do people also need ARM releases for Linux?
Linux ARM binaries have been added for the last two releases, v1.17.2 and v1.18.0. They're also available via https://downloads.sqlc.dev: https://downloads.sqlc.dev/sqlc_1.17.2_linux_arm64.tar.gz https://downloads.sqlc.dev/sqlc_1.18.0_linux_arm64.tar.gz
I've merged in main to fix a merge conflict with some generated proto code, so this is technically ready to merge. I'm still concerned about the backwards incompatible changes and...
This has merge conflicts again, but don't worry @roccoblues, I'm going to take this over the finish line. The plan is to update the overrides so that you can specify...
Alright, I've fixed the merge conflict and added support for targeting overrides at unsigned columns. If a user would like to back out of these changes, they can add the...
I believe that both `sqlc.narg` and #2800 solve this issue. We'll also want to revisit the default nullability at some point in the future, but it's a backwards incompatible change...
> Postgres never supported this syntax for parameter references Okay, that's great news. sqlc does not do the parameter re-writing, so this shouldn't be a breaking change for users. While...