From 6997dd909c96e55b8587d07ca07683541843f838 Mon Sep 17 00:00:00 2001 From: Jay Huh Date: Wed, 10 Jul 2024 10:53:30 -0700 Subject: [PATCH] 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 --- tools/db_crashtest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index d75d9d9be13..1b7ecf67de7 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -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 @@ -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 = {