Informix Blob locator fix

This commit is contained in:
Vladimír Kuruc 2024-07-02 13:06:34 +02:00 committed by Christian Beikov
parent 84b3ea0115
commit a6503e100e
2 changed files with 11 additions and 1 deletions

View File

@ -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;

View File

@ -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 {