2017-10-14 03:23:00 +08:00
|
|
|
"""Database functions that do comparisons or type conversions."""
|
2018-01-15 05:00:16 +08:00
|
|
|
from django.db.models.expressions import Func, Value
|
2017-10-14 03:23:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Cast(Func):
|
|
|
|
"""Coerce an expression to a new field type."""
|
|
|
|
function = 'CAST'
|
|
|
|
template = '%(function)s(%(expressions)s AS %(db_type)s)'
|
|
|
|
|
|
|
|
def __init__(self, expression, output_field):
|
|
|
|
super().__init__(expression, output_field=output_field)
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection, **extra_context):
|
|
|
|
extra_context['db_type'] = self.output_field.cast_db_type(connection)
|
|
|
|
return super().as_sql(compiler, connection, **extra_context)
|
|
|
|
|
2018-09-18 19:59:10 +08:00
|
|
|
def as_sqlite(self, compiler, connection, **extra_context):
|
|
|
|
db_type = self.output_field.db_type(connection)
|
|
|
|
if db_type in {'datetime', 'time'}:
|
|
|
|
# Use strftime as datetime/time don't keep fractional seconds.
|
|
|
|
template = 'strftime(%%s, %(expressions)s)'
|
|
|
|
sql, params = super().as_sql(compiler, connection, template=template, **extra_context)
|
|
|
|
format_string = '%H:%M:%f' if db_type == 'time' else '%Y-%m-%d %H:%M:%f'
|
|
|
|
params.insert(0, format_string)
|
|
|
|
return sql, params
|
|
|
|
elif db_type == 'date':
|
|
|
|
template = 'date(%(expressions)s)'
|
|
|
|
return super().as_sql(compiler, connection, template=template, **extra_context)
|
|
|
|
return self.as_sql(compiler, connection, **extra_context)
|
|
|
|
|
2018-02-08 15:09:00 +08:00
|
|
|
def as_mysql(self, compiler, connection, **extra_context):
|
2017-12-28 08:16:37 +08:00
|
|
|
# MySQL doesn't support explicit cast to float.
|
|
|
|
template = '(%(expressions)s + 0.0)' if self.output_field.get_internal_type() == 'FloatField' else None
|
2018-02-08 15:09:00 +08:00
|
|
|
return self.as_sql(compiler, connection, template=template, **extra_context)
|
2017-12-28 08:16:37 +08:00
|
|
|
|
2018-02-08 15:09:00 +08:00
|
|
|
def as_postgresql(self, compiler, connection, **extra_context):
|
2017-10-14 03:23:00 +08:00
|
|
|
# CAST would be valid too, but the :: shortcut syntax is more readable.
|
2018-01-16 02:11:20 +08:00
|
|
|
# 'expressions' is wrapped in parentheses in case it's a complex
|
|
|
|
# expression.
|
2018-02-08 15:09:00 +08:00
|
|
|
return self.as_sql(compiler, connection, template='(%(expressions)s)::%(db_type)s', **extra_context)
|
2017-10-14 03:23:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Coalesce(Func):
|
|
|
|
"""Return, from left to right, the first non-null expression."""
|
|
|
|
function = 'COALESCE'
|
|
|
|
|
|
|
|
def __init__(self, *expressions, **extra):
|
|
|
|
if len(expressions) < 2:
|
|
|
|
raise ValueError('Coalesce must take at least two expressions')
|
|
|
|
super().__init__(*expressions, **extra)
|
|
|
|
|
2018-02-08 15:09:00 +08:00
|
|
|
def as_oracle(self, compiler, connection, **extra_context):
|
2017-10-14 03:23:00 +08:00
|
|
|
# Oracle prohibits mixing TextField (NCLOB) and CharField (NVARCHAR2),
|
|
|
|
# so convert all fields to NCLOB when that type is expected.
|
|
|
|
if self.output_field.get_internal_type() == 'TextField':
|
|
|
|
class ToNCLOB(Func):
|
|
|
|
function = 'TO_NCLOB'
|
|
|
|
|
|
|
|
expressions = [
|
|
|
|
ToNCLOB(expression) for expression in self.get_source_expressions()
|
|
|
|
]
|
|
|
|
clone = self.copy()
|
|
|
|
clone.set_source_expressions(expressions)
|
2018-02-08 15:09:00 +08:00
|
|
|
return super(Coalesce, clone).as_sql(compiler, connection, **extra_context)
|
|
|
|
return self.as_sql(compiler, connection, **extra_context)
|
2017-10-14 03:23:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Greatest(Func):
|
|
|
|
"""
|
|
|
|
Return the maximum expression.
|
|
|
|
|
|
|
|
If any expression is null the return value is database-specific:
|
|
|
|
On PostgreSQL, the maximum not-null expression is returned.
|
|
|
|
On MySQL, Oracle, and SQLite, if any expression is null, null is returned.
|
|
|
|
"""
|
|
|
|
function = 'GREATEST'
|
|
|
|
|
|
|
|
def __init__(self, *expressions, **extra):
|
|
|
|
if len(expressions) < 2:
|
|
|
|
raise ValueError('Greatest must take at least two expressions')
|
|
|
|
super().__init__(*expressions, **extra)
|
|
|
|
|
2018-02-08 15:09:00 +08:00
|
|
|
def as_sqlite(self, compiler, connection, **extra_context):
|
2017-10-14 03:23:00 +08:00
|
|
|
"""Use the MAX function on SQLite."""
|
2018-02-08 15:09:00 +08:00
|
|
|
return super().as_sqlite(compiler, connection, function='MAX', **extra_context)
|
2017-10-14 03:23:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Least(Func):
|
|
|
|
"""
|
|
|
|
Return the minimum expression.
|
|
|
|
|
|
|
|
If any expression is null the return value is database-specific:
|
|
|
|
On PostgreSQL, return the minimum not-null expression.
|
|
|
|
On MySQL, Oracle, and SQLite, if any expression is null, return null.
|
|
|
|
"""
|
|
|
|
function = 'LEAST'
|
|
|
|
|
|
|
|
def __init__(self, *expressions, **extra):
|
|
|
|
if len(expressions) < 2:
|
|
|
|
raise ValueError('Least must take at least two expressions')
|
|
|
|
super().__init__(*expressions, **extra)
|
|
|
|
|
2018-02-08 15:09:00 +08:00
|
|
|
def as_sqlite(self, compiler, connection, **extra_context):
|
2017-10-14 03:23:00 +08:00
|
|
|
"""Use the MIN function on SQLite."""
|
2018-02-08 15:09:00 +08:00
|
|
|
return super().as_sqlite(compiler, connection, function='MIN', **extra_context)
|
2018-01-15 05:00:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
class NullIf(Func):
|
|
|
|
function = 'NULLIF'
|
|
|
|
arity = 2
|
|
|
|
|
|
|
|
def as_oracle(self, compiler, connection, **extra_context):
|
|
|
|
expression1 = self.get_source_expressions()[0]
|
|
|
|
if isinstance(expression1, Value) and expression1.value is None:
|
|
|
|
raise ValueError('Oracle does not allow Value(None) for expression1.')
|
|
|
|
return super().as_sql(compiler, connection, **extra_context)
|