File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
hibernate-community-dialects/src/main/java/org/hibernate/community/dialect
hibernate-core/src/test/java/org/hibernate/orm/test/lob Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -531,6 +531,16 @@ public boolean supportsCurrentTimestampSelection() {
531
531
return true ;
532
532
}
533
533
534
+ @ Override
535
+ public boolean supportsLobValueChangePropagation () {
536
+ return false ;
537
+ }
538
+
539
+ @ Override
540
+ public boolean supportsUnboundedLobLocatorMaterialization () {
541
+ return false ;
542
+ }
543
+
534
544
@ Override
535
545
public boolean isCurrentTimestampSelectStringCallable () {
536
546
return false ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public String[] getMappings() {
45
45
46
46
@ Test
47
47
@ RequiresDialectFeature (
48
- value = DialectChecks .SupportsUnboundedLobLocatorMaterializationCheck .class ,
48
+ value = DialectChecks .SupportsExpectedLobUsagePattern .class ,
49
49
comment = "database/driver does not support materializing a LOB locator outside the owning transaction"
50
50
)
51
51
public void testBoundedBlobLocatorAccess () throws Throwable {
You can’t perform that action at this time.
0 commit comments