Index: pgjdbc.xml =================================================================== RCS file: /usr/local/cvsroot/pgjdbc/pgjdbc/doc/pgjdbc.xml,v retrieving revision 1.27 diff -c -r1.27 pgjdbc.xml *** pgjdbc.xml 24 Nov 2005 06:36:03 -0000 1.27 --- pgjdbc.xml 24 Mar 2006 12:00:39 -0000 *************** *** 2040,2045 **** --- 2040,2057 ---- 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) + not + extract((interval according to argIntervalType) from argTimeStamp2-argTimeStamp1 ) + only an argIntervalType value of SQL_TSI_FRAC_SECOND,SQL_TSI_FRAC_MINUTE,SQL_TSI_FRAC_HOUR or SQL_TSI_FRAC_DAY is supported +