Kyle Gray
Kyle Gray
Huh, this is most certainly a bug.
@landbed that is already the case. You can download macOS and Linux binaries for every commit on [master](https://github.com/kyleconroy/sqlc#tip-releases). Each [release](https://github.com/kyleconroy/sqlc/releases/tag/v1.0.0) also has binaries. The issue is that out PostgreSQL parser...
Initial Windows support is now live (#886). ```bash GOOS=windows GOARCH=amd64 go build ./cmd/sqlc/ ``` These builds have a huge limitation: the PostgreSQL engine does not work. While that's obviously not...
@nickbruun Sorry that I'm just getting around to getting this reviewed. I know it's been months since it was opened. I'm onboard with this change and would like to get...
The Kotlin code generation currently doesn't support named parameters. Sadly Kotlin support isn't actively being worked on, so you'll need to continue to use positional parameters.
Migrated to https://github.com/tabbed/sqlc-gen-kotlin/issues/1
Closing this one as there are two workarounds. I'm not sure we'll be able to get around using a reserved word with short-hand syntax.
As @akutschera, this is a completely valid SQL query. It will return an empty row. This shouldn't result in an error.
I don't think this is currently possible. Release binaries are built using GitHub Actions. Until they support M1 machines, darwin_arm is off the table. I'm not sure about Linux ARM.
The issue here is that sqlc depends on a few packages that use cgo, which makes cross-compiling difficult. Thankfully, I'm the new owner of an M1 MacBook, so I can...