Commit 07728a2c authored by Marc Tamlyn's avatar Marc Tamlyn
Browse files

Refs #2443 -- Fix Oracle tests for DurationField.

It helps if there are the correct number of microseconds in a second.
parent 57554442
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -213,7 +213,7 @@ WHEN (new.%(col_name)s IS NULL)
                day_precision), []

    def format_for_duration_arithmetic(self, sql):
        return "NUMTODSINTERVAL(%s / 100000, 'SECOND')" % sql
        return "NUMTODSINTERVAL(%s / 1000000, 'SECOND')" % sql

    def date_trunc_sql(self, lookup_type, field_name):
        # http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions230.htm#i1002084