diff options
author | snaury <snaury@ydb.tech> | 2022-10-04 14:08:41 +0300 |
---|---|---|
committer | snaury <snaury@ydb.tech> | 2022-10-04 14:08:41 +0300 |
commit | ab745cf85e2bf127cfe1d2cfc4933a310f691f5f (patch) | |
tree | bd775b91d6f5ac3e32823d0684d6bc66575de495 | |
parent | 4cf93820c1ced899f7d1be40a63e60451003fb8a (diff) | |
download | ydb-ab745cf85e2bf127cfe1d2cfc4933a310f691f5f.tar.gz |
Allow multiple SetTabletNotReady calls
-rw-r--r-- | ydb/core/tx/datashard/datashard_kqp_compute.h | 2 |
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; |