diff options
author | osidorkin <[email protected]> | 2024-11-01 14:09:24 +0300 |
---|---|---|
committer | osidorkin <[email protected]> | 2024-11-01 14:24:22 +0300 |
commit | 8185bb23d4559cb04d29e50b937b6aba466bd275 (patch) | |
tree | b0b3674a1ad2f4be2631e2d8e8cb2d516bdbcb53 | |
parent | e42e79626dbffb8764a75cb3ed9959fd6a4efc28 (diff) |
YT-22882: Fix replication progress advance transaction clock source (by savrus@), fix test
commit_hash:bf0c491cb7f61835722775cd83d68c0f8a22a5ba
-rw-r--r-- | yt/yt/client/api/transaction_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yt/yt/client/api/transaction_client.h b/yt/yt/client/api/transaction_client.h index 5b450160295..626d4eae38a 100644 --- a/yt/yt/client/api/transaction_client.h +++ b/yt/yt/client/api/transaction_client.h @@ -57,6 +57,9 @@ struct TTransactionStartOptions //! By default, all master transactions are Cypress expect for some //! system ones (e.g. store flusher transactions). bool StartCypressTransaction = true; + + //! Clock cluster tag used for timestamp generation on coordinators + TClusterTag ClockClusterTag = NObjectClient::InvalidCellTag; }; struct TTransactionAttachOptions |