Class BaseExpression
Base class for all query expressions.
Declaration
@deconstructible
class BaseExpression
source linkDocumentation
Methods
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def as_sql(self, compiler, connection) Responsible for returning a (sql, [params]) tuple to be included in the current query.
Different backends can provide their own implementation, by
providing an `as_{vendor}` method and patching the Expression:
```
def override_as_sql(self, compiler, connection):
# custom logic
return super().as_sql(compiler, connection)
setattr(Expression, 'as_' + connection.vendor, override_as_sql)
```
Arguments:
* compiler: the query compiler responsible for generating the query.
Must have a compile method, returning a (sql, [params]) tuple.
Calling compiler(value) will return a quoted `value`.
* connection: the database connection used for the current query.
Return: (sql, params)
Where `sql` is a string containing ordered sql parameters to be
replaced with the elements of the list `params`.
Overrides
This method is overriden in:
▶ def asc(self, **kwargs) Overrides
This method is overriden in:
@property
def conditional(self)
@cached_property
def contains_aggregate(self)
@cached_property
def contains_column_references(self)
@cached_property
def contains_over_clause(self)
▶ def convert_value(self) @cached_property Expressions provide their own converters because users have the option of manually specifying the output_field which may be a different type from the one the database returns.
@cached_property
def convert_value(self)
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def desc(self, **kwargs) Overrides
This method is overriden in:
▷ def field(self) @property ▷ def flatten(self) Recursively yield this expression and all subexpressions, in depth-first order.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def get_source_fields(self) Return the underlying field types used by this aggregate.
Overrides
This method is overriden in:
@cached_property
def identity(self)
Overrides
This method is overriden in:
▶ def output_field(self) @cached_property Return the output type of this expressions.
@cached_property
def output_field(self)
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False) Provide the chance to do any preprocessing or validation before being added to the query.
Arguments:
* query: the backend query implementation
* allow_joins: boolean allowing or denying use of joins
in this query
* reuse: a set of reusable joins for multijoins
* summarize: a terminal aggregate clause
* for_save: whether this expression about to be used in a save or update
Return: an Expression to be added to the query.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def select_format(self, compiler, sql, params) Custom format for select clauses. For example, EXISTS expressions need to be wrapped in CASE WHEN on Oracle.
Overrides
This method is overriden in:
Subclasses
Reexports