Kaydet (Commit) 07728a2c authored tarafından Marc Tamlyn's avatar Marc Tamlyn

Refs #2443 -- Fix Oracle tests for DurationField.

It helps if there are the correct number of microseconds in a second.
üst 57554442
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment