Changes from 675624 to 676008: ------------------------------------------------------------------------ r675669 | kmarsden | 2008-07-10 18:40:25 +0000 (Thu, 10 Jul 2008) | 3 lines DERBY-3771 testClasspathChecker under SysinfoCPCheckTest failed on Zos ------------------------------------------------------------------------ r675777 | kmarsden | 2008-07-10 21:58:18 +0000 (Thu, 10 Jul 2008) | 5 lines DERBY-3776 testGetBytes under BlobClob4BlobTest failed on Zos with encoding issue Fix String created from blob bytes read to use US-ASCII, to match encoding used for insert. ------------------------------------------------------------------------ r675861 | kahatlen | 2008-07-11 08:24:34 +0000 (Fri, 11 Jul 2008) | 2 lines Removed @throws tag for exception that can't be thrown. ------------------------------------------------------------------------ r675870 | kahatlen | 2008-07-11 08:55:29 +0000 (Fri, 11 Jul 2008) | 14 lines DERBY-3319: Logical connections do not check if a transaction is active on close Make sure that connections created by the different kinds of data sources throw an exception on close if they are active. This is done to get the same behaviour as with connections returned by DriverManager. Don't throw exception for connections with auto-commit on (since they'll auto-commit the transaction as part of the close, and therefore won't leave uncommitted operations around) or connections that are part of an XA transaction (since those transactions can still be committed/aborted via the associated XAResource after the closing of the connection). ------------------------------------------------------------------------ r675900 | kahatlen | 2008-07-11 10:07:24 +0000 (Fri, 11 Jul 2008) | 5 lines Fixed javadoc warnings in OverflowInputStream - removed @return tag for void methods - fixed wrong name in @param tag ------------------------------------------------------------------------ r675918 | kahatlen | 2008-07-11 11:01:35 +0000 (Fri, 11 Jul 2008) | 2 lines DERBY-2164 (partial) Fixed NullPointerException when loading storeless engine ------------------------------------------------------------------------ r675956 | kmarsden | 2008-07-11 14:07:51 +0000 (Fri, 11 Jul 2008) | 3 lines DERBY-3745 Derby can leak classloaders in an app server environment ------------------------------------------------------------------------ r675967 | kmarsden | 2008-07-11 14:37:11 +0000 (Fri, 11 Jul 2008) | 5 lines DERBY-3774 jdbc4/ClobTest fails on Zos with AssertionFailedError: Streams differ at index 0 expected:<200> but was:<72> Test compared getAsciiStream results with String.getBytes() without specifying "US-ASCII" as the encoding for getBytes. ------------------------------------------------------------------------ r676001 | kmarsden | 2008-07-11 15:54:50 +0000 (Fri, 11 Jul 2008) | 5 lines DERBY-3773 ImportExportLobTest failed on Zos Clobs differ at index 1 expected:<99> but was:<196> Needed to specify codeset when importing file. ------------------------------------------------------------------------