File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 27
27
28
28
import org .hibernate .cfg .AvailableSettings ;
29
29
import org .hibernate .cfg .Configuration ;
30
+ import org .hibernate .reactive .testing .DatabaseSelectionRule ;
30
31
32
+ import org .junit .Rule ;
31
33
import org .junit .Test ;
32
34
33
35
import io .vertx .ext .unit .TestContext ;
34
36
37
+ import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .ORACLE ;
38
+
35
39
import static org .hibernate .reactive .util .impl .CompletionStages .loop ;
36
40
37
41
public class UTCTest extends BaseReactiveTest {
38
42
43
+ // testDate(), testCalendar(), testLocalDateTime() & testZonedDateTime() fail with....
44
+ //
45
+ // throws jakarta.persistence.NoResultException: No result found for query [from ThingInUTC where date=:dt]
46
+ // at app//org.hibernate.reactive.query.spi.ReactiveAbstractSelectionQuery.reactiveSingleResult(ReactiveAbstractSelectionQuery.java:175)
47
+ @ Rule
48
+ public final DatabaseSelectionRule skip = DatabaseSelectionRule .skipTestsFor ( ORACLE );
49
+
39
50
@ Override
40
51
public CompletionStage <Void > deleteEntities (Class <?>... entities ) {
41
52
return getSessionFactory ()
You can’t perform that action at this time.
0 commit comments