Skip to content

Commit

Permalink
Disable attribute group txn tests (facebook#12851)
Browse files Browse the repository at this point in the history
Summary:
Transactions are not yet supported in AttributeGroup APIs. Disabling `use_attribute_group` for txn tests

Pull Request resolved: facebook#12851

Test Plan:
Verified output that `--use_attribute_group=0`

```
python3 tools/db_crashtest.py whitebox --txn
```
```
python3 tools/db_crashtest.py whitebox --optimistic_txn
```

Reviewed By: hx235

Differential Revision: D59565635

Pulled By: jaykorean

fbshipit-source-id: 7d618f475b6d2e5a53c3c59cdf1e694f3893ae58
  • Loading branch information
jaykorean authored and facebook-github-bot committed Jul 10, 2024
1 parent d6f265f commit 6997dd9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/db_crashtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,8 @@ 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 @@ -536,6 +538,8 @@ 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 6997dd9

Please sign in to comment.