We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my codebase I have
type Identity int64
Imagine a query like
-- name: GoGetThem :many SELECT * FROM users WHERE id = ANY(@ids::bigserial[]);
That would generate an interface
func GoGetThem(ctx context.Context, ids []int64)
It would have been amazing if type override supported overrides for named parameters, so sqlc could generate an interface like
func GoGetThem(ctx context.Context, ids []Identity)
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What do you want to change?
In my codebase I have
Imagine a query like
That would generate an interface
It would have been amazing if type override supported overrides for named parameters, so sqlc could generate an interface like
What database engines need to be changed?
No response
What programming language backends need to be changed?
No response
The text was updated successfully, but these errors were encountered: