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
If we trying to call go-queryset with statement like NewUserQuerySet(db).NameEq("some_name").One(&user) we should see sql statement like
NewUserQuerySet(db).NameEq("some_name").One(&user)
SELECT * FROM `users` WHERE `users`.`deleted_at` AND ((`name` = ?)) IS NULL ORDER BY `users`.`id` ASC LIMIT 1
but the library generates following statement:
SELECT * FROM `users` WHERE `users`.deleted_at AND ((name = ?)) IS NULL ORDER BY `users`.`id` ASC LIMIT 1
Possibly it could be critical in some cases
The text was updated successfully, but these errors were encountered:
Duplicate for #19
Sorry, something went wrong.
No branches or pull requests
If we trying to call go-queryset with statement like
NewUserQuerySet(db).NameEq("some_name").One(&user)
we should see sql statement likebut the library generates following statement:
Possibly it could be critical in some cases
The text was updated successfully, but these errors were encountered: