Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Duplicate
-
10.5.3.1, 10.6.1.0
-
None
-
Normal
-
Newcomer
Description
I noticed this code in DRDAConnThread.closesStream(InputStream stream)
private static void closeStream(InputStream stream){
try
{ if (stream != null) stream.close(); }catch (IOException e)
{ Util.javaException(e); }}
I think the javaException won't be thrown or logged and the underlying IOException will be lost. I have not investigated whether it should be thrown or just logged, but should be addressed with the DERBY-1191 fix.
Attachments
Issue Links
- duplicates
-
DERBY-5396 DRDAStatement and DRDAConnThread swallow IOExceptions
- Closed
- is related to
-
DERBY-326 Improve streaming of large objects for network server and client
- Closed
- relates to
-
DERBY-1191 Some SQLExceptions, for example those generated from BrokeredStatements, do not print to derby.log even when derby.stream.error.logSeverityLevel=0
- Open