aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnaury <snaury@ydb.tech>2022-10-04 14:08:41 +0300
committersnaury <snaury@ydb.tech>2022-10-04 14:08:41 +0300
commitab745cf85e2bf127cfe1d2cfc4933a310f691f5f (patch)
treebd775b91d6f5ac3e32823d0684d6bc66575de495
parent4cf93820c1ced899f7d1be40a63e60451003fb8a (diff)
downloadydb-ab745cf85e2bf127cfe1d2cfc4933a310f691f5f.tar.gz
Allow multiple SetTabletNotReady calls
-rw-r--r--ydb/core/tx/datashard/datashard_kqp_compute.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/datashard/datashard_kqp_compute.h b/ydb/core/tx/datashard/datashard_kqp_compute.h
index 3dbea628f36..5e0fc52e70c 100644
--- a/ydb/core/tx/datashard/datashard_kqp_compute.h
+++ b/ydb/core/tx/datashard/datashard_kqp_compute.h
@@ -100,7 +100,7 @@ private:
const TSmallVec<NTable::TTag>& systemColumnTags, const TSmallVec<bool>& skipNullKeys,
NUdf::TUnboxedValue* const* result, TKqpTableStats& stats);
- void SetTabletNotReady() { Y_VERIFY_DEBUG(!TabletNotReady); TabletNotReady = true; }
+ void SetTabletNotReady() { TabletNotReady = true; }
public:
NTable::TDatabase* Database = nullptr;