You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Rick Hillegas (JIRA)" <ji...@apache.org> on 2011/04/01 14:59:05 UTC

[jira] [Closed] (DERBY-5065) timestampdiff doesn't differentiate between 28 march 2010 and 29 march 2010

     [ https://issues.apache.org/jira/browse/DERBY-5065?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rick Hillegas closed DERBY-5065.
--------------------------------

    Resolution: Not A Problem

I am closing this issue as "Not a problem". I agree with Knut's analysis of dates which straddle clock shifts and I have verified this behavior.

The behavior of timestampdiff is incompletely specified here: http://msdn.microsoft.com/en-us/library/ms714639%28v=VS.85%29.aspx Note that rounding/truncation behavior is not defined. Some vendors round, some truncate. See http://shimansak-obiee.blogspot.com/2010/02/difference-between-two-dates.html

I believe that Derby's behavior falls within the tolerances of the spec. That behavior agrees with some databases and disagrees with others. I do not see any value in flipping that (dis)agreement.

> timestampdiff doesn't differentiate between 28 march 2010 and 29 march 2010
> ---------------------------------------------------------------------------
>
>                 Key: DERBY-5065
>                 URL: https://issues.apache.org/jira/browse/DERBY-5065
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.7.1.1
>         Environment: windows 7, the bug has been testified using ij tool and usign squirrel sql. My locales are "France"
>            Reporter: emmanuel chemla
>
> I needed to accomplish a simple task with Derby : computing an interval of days (like datedif in excel). 
> I used the TIMESTAMPDIFF function, it seemed to work well, until I noticed a strange behaviour : sometimes the computation is OK, sometimes not. 
> After having searched the trouble, I've found that from TIMESTAMPDIFF's point of view, the 28 march 2010 is not a different day than the 29 march 2010. 
> You can easily check it with this script in ij tool : 
> -- creating testing environment 
> CONNECT 'jdbc:derby:MyDbTestxyz;create=true';
> CREATE TABLE dummy (beginning DATE, ending DATE); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-04-01', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-31', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-30', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-29', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-28', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-27', '2010-04-01'); 
> INSERT INTO dummy (beginning, ending) VALUES ('2010-03-26', '2010-04-01'); 
> -- 
> -- checking the odd behaviour 
> SELECT beginning, ending, {fn timestampdiff(SQL_TSI_DAY, beginning, ending )} AS "interval in days" FROM dummy; 
> -- 
> --  cleaning 
> DROP TABLE dummy 
> You'll get this result : 
> beginning	ending	interval in days 
> 2010-04-01;	2010-04-01;	0 
> 2010-03-31	;	2010-04-01;	1 
> 2010-03-30	;	2010-04-01;	2 
> 2010-03-29	;	2010-04-01;	3   
> 2010-03-28	;	2010-04-01;	3  ??????
> 2010-03-27	;	2010-04-01;	4  !
> 2010-03-26	;	2010-04-01;	5  !

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira