Hi,
I encountered some interesting test failures with the upgrade tests
calling the Blob- and ClobStoredProcedureTest with JSR169. The
failures are because of usage of DriverManager at
org.apache.derby.impl.services.reflect.DirectCall.invoke(Unknown
Source)
This is in *lobStoredProcedureTest.suite():
if (JDBC.vmSupportsJSR169()) {
return new TestSuite("empty: client not supported on JSR169");
}
else {
return TestConfiguration.defaultSuite(
BlobStoredProcedureTest.class);
}
Now, I have the following questions:
1. re *lobStoredProcedureTest.suite: why is this test using
TestConfiguration.defaultSuite, when it is apparently only a test for
client?
2. when this test does run with embedded, what does it actually do?
3. If it can be run with embedded, shouldn't it also be possible to
run with JSR169?
Thx,
Myrna