File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/types Expand file tree Collapse file tree 1 file changed +5
-3
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
- import org . junit . jupiter . api . Disabled ;
16
+
17
17
import org .junit .jupiter .api .Test ;
18
18
import org .junit .jupiter .api .extension .RegisterExtension ;
19
19
27
27
import jakarta .persistence .Version ;
28
28
29
29
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
30
+ import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .POSTGRESQL ;
30
31
import static org .hibernate .reactive .testing .DBSelectionExtension .skipTestsFor ;
31
32
import static org .junit .jupiter .api .Assertions .assertEquals ;
32
33
import static org .junit .jupiter .api .Assertions .assertTrue ;
33
34
34
35
/**
35
36
* Test types that we expect to work only on selected DBs.
36
37
*/
37
- @ Disabled // [ORM-6] Creates the columns in Postgres as oid, and return null
38
38
public class LobTypeTest extends BaseReactiveTest {
39
39
40
+ // Db2: Client doesn't support CLOB type. See https://github.com/hibernate/hibernate-reactive/issues/1662
41
+ // Postgres: Client doesn't support OID type: See https://github.com/hibernate/hibernate-reactive/issues/1663
40
42
@ RegisterExtension
41
- public DBSelectionExtension selectionRule = skipTestsFor ( DB2 );
43
+ public DBSelectionExtension selectionRule = skipTestsFor ( DB2 , POSTGRESQL );
42
44
43
45
@ Override
44
46
protected Collection <Class <?>> annotatedEntities () {
You can’t perform that action at this time.
0 commit comments