Skip to content
New issue

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

Support for RLIKE REGEX #3673

Open
lil5 opened this issue Oct 24, 2024 · 0 comments
Open

Support for RLIKE REGEX #3673

lil5 opened this issue Oct 24, 2024 · 0 comments
Labels
📚 mysql enhancement New feature or request

Comments

@lil5
Copy link

lil5 commented Oct 24, 2024

What do you want to change?

Currently if I use the following script it doesn't add the correct function arguments

-- name: BlogListFilterByNameish
SELECT * FROM blog WHERE name RLIKE ?;

Returns:

func (q *Queries) BlogListFilterByNameish(ctx context.Context) ([]Blog, error) {
  ...
}

Expected to be:

func (q *Queries) BlogListFilterByNameish(ctx context.Context, name sql.NullString) ([]Blog, error) {
  ...
}

What database engines need to be changed?

MySQL

What programming language backends need to be changed?

Go

@lil5 lil5 added the enhancement New feature or request label Oct 24, 2024
@dosubot dosubot bot added the 📚 mysql label Oct 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📚 mysql enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants
@lil5 and others