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