Fixed #28934 -- Prevented Cast from truncating microseconds on Oracle.

This commit is contained in:
Mariusz Felisiak 2017-12-20 17:05:27 +01:00 committed by Tim Graham
parent a7a36bb4d8
commit fc9eec7bb7
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import datetime
from django.db import connection, models
from django.db import models
from django.db.models.expressions import Value
from django.db.models.functions import Cast
from django.test import TestCase, ignore_warnings, skipUnlessDBFeature
@ -51,9 +51,6 @@ class CastTests(TestCase):
def test_cast_from_python_to_datetime(self):
now = datetime.datetime.now()
if connection.vendor == 'oracle':
# Workaround until #28934 is fixed.
now = now.replace(microsecond=0)
dates = Author.objects.annotate(cast_datetime=Cast(now, models.DateTimeField()))
self.assertEqual(dates.get().cast_datetime, now)