Informix Blob locator fix
This commit is contained in:
parent
84b3ea0115
commit
a6503e100e
|
@ -531,6 +531,16 @@ public class InformixDialect extends Dialect {
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsLobValueChangePropagation() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsUnboundedLobLocatorMaterialization() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCurrentTimestampSelectStringCallable() {
|
||||
return false;
|
||||
|
|
|
@ -45,7 +45,7 @@ public class BlobLocatorTest extends BaseCoreFunctionalTestCase {
|
|||
|
||||
@Test
|
||||
@RequiresDialectFeature(
|
||||
value = DialectChecks.SupportsUnboundedLobLocatorMaterializationCheck.class,
|
||||
value = DialectChecks.SupportsExpectedLobUsagePattern.class,
|
||||
comment = "database/driver does not support materializing a LOB locator outside the owning transaction"
|
||||
)
|
||||
public void testBoundedBlobLocatorAccess() throws Throwable {
|
||||
|
|
Loading…
Reference in New Issue