Skip to content

Commit

Permalink
[hibernate#1741] Skip RowIdUpdateTest for Oracle
Browse files Browse the repository at this point in the history
The Oracle driver doesn't support passing a RowId as parameter of a
query
  • Loading branch information
DavideD committed Aug 31, 2023
1 parent 31435be commit 8833fb5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import static org.assertj.core.api.Assertions.assertThat;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.DB2;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.ORACLE;
import static org.hibernate.reactive.testing.DBSelectionExtension.skipTestsFor;

/**
Expand All @@ -37,8 +38,9 @@
public class RowIdUpdateTest extends BaseReactiveTest {

// Db2: Exception: IllegalStateException: Needed to have 6 in buffer but only had 0
// Oracle: Vert.x driver doesn't support RowId type parameters
@RegisterExtension
public final DBSelectionExtension skip = skipTestsFor( DB2 );
public final DBSelectionExtension skip = skipTestsFor( DB2, ORACLE );

private static SqlStatementTracker sqlTracker;

Expand Down

0 comments on commit 8833fb5

Please sign in to comment.