summaryrefslogtreecommitdiffstats
path: root/yt/cpp
diff options
context:
space:
mode:
authorbabenko <[email protected]>2026-06-14 20:44:49 +0300
committerbabenko <[email protected]>2026-06-14 21:15:45 +0300
commit9759cc2f3d73aef96ecb5c06671bfef3443b40df (patch)
treecc5e763b6eab1c59d22fd2e55edf5feb2ffbd081 /yt/cpp
parent52f00b11c4259dfa810ecdcba576a801dd043a87 (diff)
YT-22593: Migrate TOperationIdOrAlias alias to std::string
Change the alias alternative of the operation id-or-alias variant to std::string and propagate through the visitor lambdas, ResolveOperationAlias, the driver OperationAlias field and the clickhouse handler. commit_hash:6aab0b10eeb1367a1ec4c4d829855c7dd3cf4347
Diffstat (limited to 'yt/cpp')
-rw-r--r--yt/cpp/mapreduce/rpc_client/raw_client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/rpc_client/raw_client.cpp b/yt/cpp/mapreduce/rpc_client/raw_client.cpp
index e536f9e40c9..a1e7fd651ea 100644
--- a/yt/cpp/mapreduce/rpc_client/raw_client.cpp
+++ b/yt/cpp/mapreduce/rpc_client/raw_client.cpp
@@ -710,7 +710,7 @@ TOperationAttributes TRpcRawClient::GetOperation(
{
auto traceContextGuard = CreateTraceContext("RpcRawClient.GetOperation");
- auto future = Clients_.Light->GetOperation(alias, SerializeOptionsForGetOperation(options, /*useAlias*/ true));
+ auto future = Clients_.Light->GetOperation(std::string(alias), SerializeOptionsForGetOperation(options, /*useAlias*/ true));
auto result = WaitAndProcess(future);
return ParseOperationAttributes(result);
}