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
Due to this PR the docs search now has scroll to text.
When searching execute: https://docs.djangoproject.com/en/5.1/search/?q=execute
The second option, "Performing raw SQL queries", links to https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute%28%22UPDATE%20bar%20SET%20foo%20%3D%201%20WHERE%20baz%20%3D%20%25s%20%22%2C%5Bself.%20baz%5D%29 Decoded: https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s ",[self. baz]) However this doesn't scroll to the place. The correct one should be this one https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute(%22UPDATE%20bar%20SET%20foo%20%3D%201%20WHERE%20baz%20%3D%20%25s%22,%20[self.baz]) Decoded: https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s", [self.baz])
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s ",[self. baz])
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s", [self.baz])
There are two differences:
WHERE baz = %s
[self. baz])
I haven't dug further on why is this happening, whether is a fragment issue only or is an indexing issue that just happens to show up on this feature
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Due to this PR the docs search now has scroll to text.
When searching execute: https://docs.djangoproject.com/en/5.1/search/?q=execute
The second option, "Performing raw SQL queries", links to
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute%28%22UPDATE%20bar%20SET%20foo%20%3D%201%20WHERE%20baz%20%3D%20%25s%20%22%2C%5Bself.%20baz%5D%29
Decoded:
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s ",[self. baz])
However this doesn't scroll to the place.
The correct one should be this one
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute(%22UPDATE%20bar%20SET%20foo%20%3D%201%20WHERE%20baz%20%3D%20%25s%22,%20[self.baz])
Decoded:
https://docs.djangoproject.com/en/5.1/topics/db/sql/#:~:text=execute("UPDATE bar SET foo = 1 WHERE baz = %s", [self.baz])
There are two differences:
WHERE baz = %s
[self. baz])
I haven't dug further on why is this happening, whether is a fragment issue only or is an indexing issue that just happens to show up on this feature
The text was updated successfully, but these errors were encountered: