diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-11-08 19:32:01 +0300 |
---|---|---|
committer | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-11-08 19:32:01 +0300 |
commit | 369fbb22dc950c46b261c3e4a28b18714c9fda16 (patch) | |
tree | 6847e9c223df642a545fb3c049da5bebb9ef07c4 | |
parent | 8a82d0045ee8bd5ca9fe7d96049263b7b47f8b64 (diff) | |
download | ydb-369fbb22dc950c46b261c3e4a28b18714c9fda16.tar.gz |
fix string uppercase
-rw-r--r-- | ydb/core/grpc_services/rpc_object_storage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/rpc_object_storage.cpp b/ydb/core/grpc_services/rpc_object_storage.cpp index 3da01fba008..0a6d7500b39 100644 --- a/ydb/core/grpc_services/rpc_object_storage.cpp +++ b/ydb/core/grpc_services/rpc_object_storage.cpp @@ -806,7 +806,7 @@ private: TString prefixColumns = PrefixColumns.GetBuffer(); TString lastCommonPrefix = NextPrefix(CommonPrefixesRows.back()); - TSerializedCellVec::UnsafeAppendCells({TCell(lastCommonPrefix.Data(), lastCommonPrefix.Size())}, prefixColumns); + TSerializedCellVec::UnsafeAppendCells({TCell(lastCommonPrefix.data(), lastCommonPrefix.size())}, prefixColumns); TSerializedCellVec afterLastFolderPrefix; afterLastFolderPrefix.Parse(prefixColumns); |