- Notifications
You must be signed in to change notification settings - Fork 978
Closed
Labels
Description
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 syntax.
Relevant log output
No response
Database schema
CREATETABLEauthors ( id BIGSERIALPRIMARY KEY, name textNOT NULL, bio text, q text );SQL queries
-- name: GetAuthorWithQ :manySELECT*FROM authors WHERE q = $1ORDER BY name;Configuration
No response
Playground URL
https://play.sqlc.dev/p/ba6e22e495b02c910c219f86bc6b9b145bbf2af16fff7913059fdb26889b4ec3
What operating system are you using?
macOS
What database engines are you using?
PostgreSQL
What type of code are you generating?
Go