diff options
author | uzhas <uzhas@ydb.tech> | 2023-02-10 17:57:29 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2023-02-10 17:57:29 +0300 |
commit | 1e14f60b6a23408d457789db770a7e8f6718f1ec (patch) | |
tree | 828bda0b60df4d8dac5564a5517c62af6eb66b95 | |
parent | af1447894b4fe89f1c8ba69990b2749508fb7d26 (diff) | |
download | ydb-1e14f60b6a23408d457789db770a7e8f6718f1ec.tar.gz |
improve error message
-rw-r--r-- | ydb/core/yq/libs/actors/result_writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/yq/libs/actors/result_writer.cpp b/ydb/core/yq/libs/actors/result_writer.cpp index 80db379738..71be15ee2d 100644 --- a/ydb/core/yq/libs/actors/result_writer.cpp +++ b/ydb/core/yq/libs/actors/result_writer.cpp @@ -278,7 +278,7 @@ private: if (OccupiedSpace > ResultBytesLimit) { TIssues issues; - issues.AddIssue(TStringBuilder() << "Can not write results with size > " << ResultBytesLimit << " byte(s)"); + issues.AddIssue(TStringBuilder() << "Can not write results with size > " << ResultBytesLimit << " byte(s), please write results to Object Storage by INSERT INTO binding.'' statement"); SendIssuesAndSetErrorFlag(issues, NYql::NDqProto::StatusIds::LIMIT_EXCEEDED); return; } |