aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorh0pless <h0pless@yandex-team.com>2024-05-09 13:25:32 +0300
committerh0pless <h0pless@yandex-team.com>2024-05-09 13:34:50 +0300
commit3029401de563ccf15ceeead607a6ea2929734e00 (patch)
treea24f664445807339cd49eeee327a983ecbe26af2
parentd0d0bf3f5c4d8e3ccf49b4ade07feb2bbfa73702 (diff)
downloadydb-3029401de563ccf15ceeead607a6ea2929734e00.tar.gz
YT-20911: Add vectorized read request
16ddf80cca4de17b7f206159524b4b6b7f704df7
-rw-r--r--yt/yt/core/ytree/ypath_client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt/yt/core/ytree/ypath_client.h b/yt/yt/core/ytree/ypath_client.h
index 58bcae8da2..e1b92a7689 100644
--- a/yt/yt/core/ytree/ypath_client.h
+++ b/yt/yt/core/ytree/ypath_client.h
@@ -25,6 +25,8 @@ public:
//! This simplifies correlating requests with responses within a batch.
DEFINE_BYREF_RW_PROPERTY(std::any, Tag);
+ DEFINE_BYREF_RW_PROPERTY(std::vector<TSharedRef>, Attachments);
+
public:
NRpc::TRequestId GetRequestId() const override;
NRpc::TRealmId GetRealmId() const override;
@@ -81,7 +83,6 @@ protected:
bool mutating);
NRpc::NProto::TRequestHeader Header_;
- std::vector<TSharedRef> Attachments_;
virtual TSharedRef SerializeBody() const = 0;
};