summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorShai Berger <shai@platonix.com>2014-03-12 23:43:45 +0200
committerTim Graham <timograham@gmail.com>2014-07-29 07:00:26 -0400
commit838b7f8220d4ac2af6e39e2b5a3c1a7b95131083 (patch)
treeaadda0e5990e5076d81c01129dddd98065eefbe6 /docs
parent8e25b696ba896f7f9b07565e7559aa08e743288a (diff)
[1.6.x] Fixed #20292: Pass datetime objects (not formatted dates) as params to Oracle
This seems worthwhile in its own right, but also works around an Oracle bug (in versions 10 -- 11.1) where the use of Unicode would reset the date/time formats, causing ORA-01843 errors. Thanks Trac users CarstenF for the report, jtiai for the initial patch, and everyone who contributed to the discussion on the ticket. Backport of 6983201 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.6.6.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.6.6.txt b/docs/releases/1.6.6.txt
index c8c7a037c0..fb182f5dcb 100644
--- a/docs/releases/1.6.6.txt
+++ b/docs/releases/1.6.6.txt
@@ -26,3 +26,7 @@ Bugfixes
* Fixed transaction handling when specifying non-default database in
``createcachetable`` and ``flush``
(`#23089 <https://code.djangoproject.com/ticket/23089>`_).
+
+* Fixed the "ORA-01843: not a valid month" errors when using Unicode
+ with older versions of Oracle server
+ (`#20292 <https://code.djangoproject.com/ticket/20292>`_).