diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-07-27 19:36:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-27 19:36:47 +0200 |
| commit | b61d5b1991e2ca2c3450ccc334224f3d51da39dc (patch) | |
| tree | 8cb9dee554eb78d43d69950dcf756d8eedac5d0d /docs | |
| parent | 14172cf4426de6c867028f1c194011c0a26e662d (diff) | |
Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't provided.
Thanks Tim Graham for the review.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/2.0.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/2.0.txt b/docs/releases/2.0.txt index 36359e4979..87f95210ee 100644 --- a/docs/releases/2.0.txt +++ b/docs/releases/2.0.txt @@ -348,6 +348,12 @@ backends. requires that the arguments to ``OF`` be columns rather than tables, set ``DatabaseFeatures.select_for_update_of_column = True``. +* Third-party database backends should add a + ``DatabaseOperations.cast_char_field_without_max_length`` attribute with the + database data type that will be used in the + :class:`~django.db.models.functions.Cast` function for a ``CharField`` if the + ``max_length`` argument isn't provided. + Dropped support for Oracle 11.2 ------------------------------- |
