Kyle Gray
Kyle Gray
Took a bit longer than expected, but ARM releases have been added for Darwin for 1.16.0. https://github.com/kyleconroy/sqlc/releases/download/v1.16.0/sqlc_1.16.0_darwin_arm64.tar.gz
Looks like there was an issue with signing the releases for v1.16.0, removing them for now
> Is there a way to let 'sqlc generate' ignore errors and still generate the proper files that contain valid create table statements? There currently isn't. The easiest workaround is...
I think I know what the issue here is. When handling migration files, sqlc will drop the rest of the file after `-- +goose Down`. In this case, that ends...
@mfridman Yep
Now that plugin support has landed, I've started sketching out what this might look like for simple queries, based on the [authors](https://github.com/kyleconroy/sqlc/blob/main/examples/authors/postgresql/query.sql) example. I'm imaging that the generated code would...
I started out writing this in Rust (https://github.com/tabbed/sqlc-gen-node-pg), but I think I can actually write this in Go. If anyone wants to take a crack at the plugin, be my...
I'm not able to reproduce this error. The playground link you provided is working as intended. I created a smaller example (https://play.sqlc.dev/p/984e6f38c34bd8ef7ea26c9e246738f38fd993e90b1f105cdf89fe185cb55a48) and it's working as intended as well.
Agreed that this is a bug. In the meantime, you can use named parameters to get the correct parameter name: ```sql -- name: ListPilotsByIDs :many SELECT * FROM pilots WHERE...
I agree that changes like this aren't great. In this case, I felt it was necessary since these enums represented future errors. If you have a column with a nullable...