aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhcrc <whcrc@ydb.tech>2022-08-29 17:45:16 +0300
committerwhcrc <whcrc@ydb.tech>2022-08-29 17:45:16 +0300
commit0fb93996e01cac4e95120396cf60d638afe3724e (patch)
treec834c77df5b8b9ded8ef815bd8f5912c3e4fae7d
parent511b2c2cc25f0b4b09eb8cfa9fcc26bdae82de0a (diff)
downloadydb-0fb93996e01cac4e95120396cf60d638afe3724e.tar.gz
fix error text
-rw-r--r--ydb/library/yql/providers/dq/provider/yql_dq_datasink_type_ann.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/dq/provider/yql_dq_datasink_type_ann.cpp b/ydb/library/yql/providers/dq/provider/yql_dq_datasink_type_ann.cpp
index 48553e9252..f6aa1df542 100644
--- a/ydb/library/yql/providers/dq/provider/yql_dq_datasink_type_ann.cpp
+++ b/ydb/library/yql/providers/dq/provider/yql_dq_datasink_type_ann.cpp
@@ -45,7 +45,7 @@ public:
private:
TStatus AnnotateDqReplicateAlwaysError(const TExprNode::TPtr& input, TExprContext& ctx) {
- ctx.AddError(TIssue(ctx.GetPosition(input->Pos()), "DqReplicate is not supported by DQ"));
+ ctx.AddError(TIssue(ctx.GetPosition(input->Pos()), "Reading multiple times from the same source is not supported"));
return TStatus::Error;
}