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 1313import org .hibernate .reactive .BaseReactiveTest ;
1414import org .hibernate .reactive .testing .DBSelectionExtension ;
1515
16- import org . junit . jupiter . api . Disabled ;
16+
1717import org .junit .jupiter .api .Test ;
1818import org .junit .jupiter .api .extension .RegisterExtension ;
1919
2727import jakarta .persistence .Version ;
2828
2929import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
30+ import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .POSTGRESQL ;
3031import static org .hibernate .reactive .testing .DBSelectionExtension .skipTestsFor ;
3132import static org .junit .jupiter .api .Assertions .assertEquals ;
3233import static org .junit .jupiter .api .Assertions .assertTrue ;
3334
3435/**
3536 * Test types that we expect to work only on selected DBs.
3637 */
37- @ Disabled // [ORM-6] Creates the columns in Postgres as oid, and return null
3838public class LobTypeTest extends BaseReactiveTest {
3939
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
4042 @ RegisterExtension
41- public DBSelectionExtension selectionRule = skipTestsFor ( DB2 );
43+ public DBSelectionExtension selectionRule = skipTestsFor ( DB2 , POSTGRESQL );
4244
4345 @ Override
4446 protected Collection <Class <?>> annotatedEntities () {
You can’t perform that action at this time.
0 commit comments