sqlc
                                
                                 sqlc copied to clipboard
                                
                                    sqlc copied to clipboard
                            
                            
                            
                        Generate type-safe code from SQL
### Version 1.27.0 ### What happened? I tried changing sqlc-version.txt to v1.27.0 on play.sqlc.dev ### Relevant log output ```shell sqlc generate failed. 500: Internal server error ``` ### Database schema...
### Version 1.27.0 ### What happened? Hello, I have one view with "pg_statio_all_tables" table and I can't generate code for this view. I don't know how I can continue with...
### Version 1.26.0 ### What happened? I have a query like ``` -- name: MembersWithExternalId :many SELECT m.*, mp.external_id FROM member m INNER JOIN member_provider mp ON mp.member_id = m.id;...
### Version 1.27.0 ### What happened? The generated function `func (q *Queries) GetAuthorWithQ(ctx context.Context, q sql.NullString) ([]Author, error)` has both a `q` struct and `q` parameter, which is invalid go...
### Version 1.27.0 ### What happened? Using a function in the VALUES clause of an INSERT statement breaks struct field name generation. ### Database schema ```sql CREATE TABLE authors (...
### Version 1.27.0 ### What happened? parameters following HAVING clause are ignored. parameters should be included in generated functions. ### Relevant log output _No response_ ### Database schema ```sql CREATE...
### Version 1.27.0 ### What happened? `sqlc generate` sometimes silently fails and sometimes segfaults. I managed to isolate the issue to this nested query ```sql -- name: GetAnsweredTasksWithQuestionText :many SELECT...
### Version 1.27.0 ### What happened? I am trying to go through the tutorial, except with my own basic queries. I get to the part where I am to try...
### What do you want to change? Currently, the only way to [disable the vetting of rules](https://docs.sqlc.dev/en/stable/howto/vet.html#opting-out-of-lint-rules) for a query is with the `@sqlc-vet-disable` flag. The problem with this is...
This PR closes #3132 by adding the `update from...` syntax to the sqlite `update_stmt` parser. Was tested locally with several different queries. Please let me know if there's anything more...