aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhor911 <hor911@ydb.tech>2022-11-11 12:00:45 +0300
committerhor911 <hor911@ydb.tech>2022-11-11 12:00:45 +0300
commit1549dea9dec8bf86e13e255d543295b72147d9af (patch)
treee73c50f8a9fcbcef0d6e85e5d946f81921ba1e55
parent3c6a82fee3bf108ca92d8278095bc6e356feba1d (diff)
downloadydb-1549dea9dec8bf86e13e255d543295b72147d9af.tar.gz
Remove useless MAGIC issue
-rw-r--r--ydb/core/yq/libs/actors/run_actor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ydb/core/yq/libs/actors/run_actor.cpp b/ydb/core/yq/libs/actors/run_actor.cpp
index 8b61c8cc59c..fc7bbeaa22d 100644
--- a/ydb/core/yq/libs/actors/run_actor.cpp
+++ b/ydb/core/yq/libs/actors/run_actor.cpp
@@ -796,8 +796,7 @@ private:
gatewayResult.Truncated = true;
gatewayResult.RowsCount = 0;
} else {
- // for resultless results expect infinite INSERT FROM SELECT and fail YQL facade (with well known secret code?)
- gatewayResult.AddIssues({NYql::TIssue("MAGIC BREAK").SetCode(555, NYql::TSeverityIds::S_ERROR)});
+ // for resultless results expect infinite INSERT FROM SELECT and just return "nothing"
}
ev->Get()->Result.SetValue(gatewayResult);
}