1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #17027 -- Added support for the power operator in F expressions.

Thanks dan at dlo.me for the initial patch.

- Added __pow__ and __rpow__ to ExpressionNode
- Added oracle and mysql specific power expressions
- Added used-defined power function for sqlite
This commit is contained in:
Florian Hahn
2013-02-21 23:02:18 +01:00
committed by Tim Graham
parent 1597503a01
commit 5240b83462
9 changed files with 56 additions and 2 deletions

View File

@@ -346,6 +346,9 @@ Models
:attr:`~django.db.models.ForeignKey.related_name` to
`'+'` or ending it with `'+'`.
* :class:`F expressions <django.db.models.F>` support the power operator
(``**``).
Signals
^^^^^^^