diff options
author | Vasily Gerasimov <UgnineSirdis@gmail.com> | 2022-06-17 17:08:53 +0300 |
---|---|---|
committer | Vasily Gerasimov <UgnineSirdis@gmail.com> | 2022-06-17 17:08:53 +0300 |
commit | aeaf52b0e1d666cf4138a23fccac7408b5afcb31 (patch) | |
tree | 1e02133fad336640af0906fe5077dfcef47f21aa | |
parent | f4cdfee1e04a4504c3fa37e7208a9fd4ed466805 (diff) | |
download | ydb-aeaf52b0e1d666cf4138a23fccac7408b5afcb31.tar.gz |
Fix internal error message
Fix internal error message
ref:2a9be4641fc3fd51f9f9d7b07c4e9c690271392a
-rw-r--r-- | ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h index afdd8cfd93c..41f0e588174 100644 --- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h +++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h @@ -1003,7 +1003,7 @@ protected: void HandleExecuteBase(TEvDqCompute::TEvNewCheckpointCoordinator::TPtr& ev) { if (!InputTransformsMap.empty()) { - InternalError(NYql::NDqProto::StatusIds::INTERNAL_ERROR, TIssuesIds::UNEXPECTED, "Internal error: input transforms don't support checkpoints yet"); + InternalError(NYql::NDqProto::StatusIds::INTERNAL_ERROR, TIssuesIds::UNEXPECTED, "Input transforms don't support checkpoints yet"); return; } |