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
Django 4 came with some changes to the query.py file, now we don't have the self.explain_query = False anymore, so this error is thrown.
query.py
self.explain_query = False
Django 3.x query.py file: https://github.com/django/django/blob/stable/3.2.x/django/db/models/sql/query.py#L245 Django 4.x query.py file: https://github.com/django/django/blob/main/django/db/models/sql/query.py#L227
Error location: https://github.com/ESSolutions/django-mssql-backend/blob/master/sql_server/pyodbc/compiler.py#L294
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Django 4 came with some changes to the
query.py
file, now we don't have theself.explain_query = False
anymore, so this error is thrown.Django 3.x
query.py
file: https://github.com/django/django/blob/stable/3.2.x/django/db/models/sql/query.py#L245Django 4.x
query.py
file: https://github.com/django/django/blob/main/django/db/models/sql/query.py#L227Error location: https://github.com/ESSolutions/django-mssql-backend/blob/master/sql_server/pyodbc/compiler.py#L294
The text was updated successfully, but these errors were encountered: