Skip to content

Commit

Permalink
Enable attribute group APIs in the transaction stress tests (#13134)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #13134

Even though `Transaction` does not currently support the attribute group variants of `PutEntity` / `GetEntity` / `MultiGetEntity`, we can still test the corresponding APIs of the underlying `TransactionDB` or `OptimisticTransactionDB` instance. Note: the multi-operation transaction stress test will be handled separately.

Reviewed By: jaykorean

Differential Revision: D65780384

fbshipit-source-id: e4ef3d0c25bcbde9d6d8410af0b7d9381c6b501a
  • Loading branch information
ltamasi authored and facebook-github-bot committed Nov 11, 2024
1 parent 925435b commit 7cb6b93
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tools/db_crashtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,6 @@ def is_direct_io_supported(dbname):
"inplace_update_support": 0,
# TimedPut is not supported in transaction
"use_timed_put_one_in": 0,
# AttributeGroup not yet supported
"use_attribute_group": 0,
}

# For optimistic transaction db
Expand All @@ -545,8 +543,6 @@ def is_direct_io_supported(dbname):
"inplace_update_support": 0,
# TimedPut is not supported in transaction
"use_timed_put_one_in": 0,
# AttributeGroup not yet supported
"use_attribute_group": 0,
}

best_efforts_recovery_params = {
Expand Down

0 comments on commit 7cb6b93

Please sign in to comment.