mirror of https://github.com/facebook/rocksdb.git
Disable attribute group txn tests (#12851)
Summary: Transactions are not yet supported in AttributeGroup APIs. Disabling `use_attribute_group` for txn tests Pull Request resolved: https://github.com/facebook/rocksdb/pull/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
This commit is contained in:
parent
d6f265f9d6
commit
6997dd909c
|
@ -523,6 +523,8 @@ txn_params = {
|
|||
"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
|
||||
|
@ -536,6 +538,8 @@ optimistic_txn_params = {
|
|||
"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 = {
|
||||
|
|
Loading…
Reference in New Issue