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
It probably breaks lots of stuff, but here is one
self = OrderBy(Col(django_content_type, contenttypes.ContentType.app_label), descending=False) compiler = <django.db.models.sql.compiler.SQLCompiler object at 0x7fd67b2ad610>, connection = <django.db.backends.sqlite3.base.DatabaseWrapper object at 0x7fd67bd7dc40> template = '%(expression)s %(ordering)s', extra_context = {}, expression_sql = '"django_content_type"."app_label"', params = [] placeholders = {'expression': '"django_content_type"."app_label"', 'ordering': 'ASC'} def as_sql(self, compiler, connection, template=None, **extra_context): if not template: if self.nulls_last: template = '%s NULLS LAST' % self.template elif self.nulls_first: template = '%s NULLS FIRST' % self.template connection.ops.check_expression_support(self) expression_sql, params = compiler.compile(self.expression) placeholders = { 'expression': expression_sql, 'ordering': 'DESC' if self.descending else 'ASC', **extra_context, } template = template or self.template > params *= template.count('%(expression)s') E TypeError: <lambda>() takes 1 positional argument but 2 were given .tox/py38-django30/lib/python3.8/site-packages/django/db/models/expressions.py:1163: TypeError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It probably breaks lots of stuff, but here is one
The text was updated successfully, but these errors were encountered: