Index: pgjdbc.xml =================================================================== RCS file: /usr/local/cvsroot/pgjdbc/pgjdbc/doc/pgjdbc.xml,v retrieving revision 1.27 diff -u -r1.27 pgjdbc.xml --- pgjdbc.xml 24 Nov 2005 06:36:03 -0000 1.27 +++ pgjdbc.xml 22 Mar 2006 08:33:21 -0000 @@ -2040,6 +2040,18 @@ extract(year from arg1) + + timestampadd(argIntervalType,argCount,argTimeStamp) + yes + ('(interval according to argIntervalType and argCount)'+argTimeStamp) + an argIntervalType value of SQL_TSI_FRAC_SECOND is not implemented since backend does not support it + + + timestampdiff(argIntervalType,argTimeStamp1,argTimeStamp2) + yes + extract((interval according to argIntervalType) from argTimeStamp2-argTimeStamp1 ) + an argIntervalType value of SQL_TSI_FRAC_SECOND is not implemented since backend does not support it +