diff options
author | Sema Checherinda <checherinda@gmail.com> | 2022-06-15 13:43:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2022-06-15 13:43:39 +0300 |
commit | 69d3035aa83bb0e6c2bee2de797ab84e88630b5a (patch) | |
tree | 28da690e9cbdc60998925e88f8e379f28bb7f74a | |
parent | 3db589558551c5096ccc620c1a1dbfc9daa2d0c8 (diff) | |
download | ydb-69d3035aa83bb0e6c2bee2de797ab84e88630b5a.tar.gz |
KIKIMR-14282 remove unnecessary check
REVIEW: 2596801
REVIEW: 2597707
x-ydb-stable-ref: 4305b7f92d10984da936d4da37cfe7dfe385aa84
-rw-r--r-- | ydb/core/kqp/provider/yql_kikimr_exec.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ydb/core/kqp/provider/yql_kikimr_exec.cpp b/ydb/core/kqp/provider/yql_kikimr_exec.cpp index 3261d5d030..d906229d53 100644 --- a/ydb/core/kqp/provider/yql_kikimr_exec.cpp +++ b/ydb/core/kqp/provider/yql_kikimr_exec.cpp @@ -1168,9 +1168,7 @@ private: auto operation = static_cast<TYdbOperation>(op.GetOperation()); const auto& desc = SessionCtx->Tables().GetTable(cluster, table); YQL_ENSURE(desc.Metadata); - size_t size = tableInfo.size(); TableDescriptionToTableInfo(desc, operation, tableInfo); - YQL_ENSURE(size + 1 == tableInfo.size()); } if (!SessionCtx->HasTx()) { |