Skip to content

Commit

Permalink
re-enable aborting test for upsert
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 committed Dec 13, 2023
1 parent af7c104 commit fa6558a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jogasaki/api/validate_user_scenario8_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class validate_user_scenario8_test :

using namespace std::string_view_literals;

TEST_F(validate_user_scenario8_test, DISABLED_upsert_primary_abort) {
TEST_F(validate_user_scenario8_test, upsert_primary_abort) {
// once aborting after upsert left the record resulting in scan failed
utils::set_global_tx_option(utils::create_tx_option{false, true});
execute_statement("create table T (C0 int primary key, C1 int)");
Expand All @@ -90,7 +90,7 @@ TEST_F(validate_user_scenario8_test, DISABLED_upsert_primary_abort) {
ASSERT_EQ(1, result.size());

Check failure on line 90 in test/jogasaki/api/validate_user_scenario8_test.cpp

View workflow job for this annotation

GitHub Actions / CTest (ubuntu-22.04, memory)

validate_user_scenario8_test.upsert_primary_abort

Expected equality of these values: 1 result.size() Which is: 2
}

TEST_F(validate_user_scenario8_test, DISABLED_upsert_secondaries_abort) {
TEST_F(validate_user_scenario8_test, upsert_secondaries_abort) {
// once aborting after upsert (to secondary) left the record
utils::set_global_tx_option(utils::create_tx_option{false, true});
execute_statement("create table T (C0 int primary key, C1 int)");
Expand Down

0 comments on commit fa6558a

Please sign in to comment.