File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/types Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 13
13
import org .hibernate .reactive .BaseReactiveTest ;
14
14
import org .hibernate .reactive .testing .DBSelectionExtension ;
15
15
16
-
17
16
import org .junit .jupiter .api .Test ;
18
17
import org .junit .jupiter .api .extension .RegisterExtension ;
19
18
19
+ import io .vertx .junit5 .Timeout ;
20
20
import io .vertx .junit5 .VertxTestContext ;
21
21
import jakarta .persistence .Column ;
22
22
import jakarta .persistence .Entity ;
26
26
import jakarta .persistence .Table ;
27
27
import jakarta .persistence .Version ;
28
28
29
+ import static java .util .concurrent .TimeUnit .MINUTES ;
29
30
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
30
31
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .POSTGRESQL ;
31
32
import static org .hibernate .reactive .testing .DBSelectionExtension .skipTestsFor ;
35
36
/**
36
37
* Test types that we expect to work only on selected DBs.
37
38
*/
39
+ @ Timeout (value = 10 , timeUnit = MINUTES )
38
40
public class LobTypeTest extends BaseReactiveTest {
39
41
40
42
// Db2: Client doesn't support CLOB type. See https://github.com/hibernate/hibernate-reactive/issues/1662
You can’t perform that action at this time.
0 commit comments