1. 24 7月, 2005 1 次提交
  2. 23 7月, 2005 10 次提交
  3. 22 7月, 2005 6 次提交
  4. 21 7月, 2005 11 次提交
  5. 20 7月, 2005 1 次提交
    • B
      Fix interval division and multiplication, before: · 826604f9
      Bruce Momjian 提交于
      	test=> select '4 months'::interval / 5;
      	   ?column?
      	---------------
      	 1 mon -6 days
      	(1 row)
      
      after:
      
      	test=> select '4 months'::interval / 5;
      	 ?column?
      	----------
      	 24 days
      	(1 row)
      
      The problem was the use of rint() to round, and then find the remainder,
      causing the negative values.
      826604f9
  6. 19 7月, 2005 11 次提交