diff options
author | kvk1920 <kvk1920@yandex-team.com> | 2023-10-05 15:50:02 +0300 |
---|---|---|
committer | kvk1920 <kvk1920@yandex-team.com> | 2023-10-05 16:26:34 +0300 |
commit | 28621c821ff5f203158451671f423bc909f022ec (patch) | |
tree | 65016186a2853aa8c8b1aa1328c14aab988160f4 | |
parent | 37597d32312a262dc3ec9e25e1f1f6fcd9e6006c (diff) | |
download | ydb-28621c821ff5f203158451671f423bc909f022ec.tar.gz |
[cosmetic] Cypress proxy
-rw-r--r-- | yt/yt/client/transaction_client/helpers.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/yt/yt/client/transaction_client/helpers.h b/yt/yt/client/transaction_client/helpers.h index 3d0251ff467..59626e8c8ef 100644 --- a/yt/yt/client/transaction_client/helpers.h +++ b/yt/yt/client/transaction_client/helpers.h @@ -26,12 +26,13 @@ struct TReadTimestampRange //! #EObjectType::SytemTransaction or #EObjectType::SystemNestedTransaction. bool IsMasterTransactionId(TTransactionId id); +//! Checks if #type is either #EObjectType::AtomicTabletTransaction or +//! #EObjectType::NonAtomicTabletTransaction. bool IsTabletTransactionType(NObjectClient::EObjectType type); //! Checks if #id represents a valid transaction accepted by tablets: -//! the type of #id must be either -//! #EObjectType::Transaction, #EObjectType::AtomicTabletTransaction, -//! or #EObjectType::NonAtomicTabletTransaction. +//! the type of #id must be either #EObjectType::AtomicTabletTransaction or +//! #EObjectType::NonAtomicTabletTransaction. void ValidateTabletTransactionId(TTransactionId id); //! Checks if #id represents a valid transaction accepted by masters: |