aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgaltsev <galtsev@yandex-team.com>2025-01-10 22:57:53 +0300
committergaltsev <galtsev@yandex-team.com>2025-01-10 23:49:43 +0300
commit4b74ecb3d4b0394d9e045a31e6a4e32632ce76c3 (patch)
tree9f87ad8fdeaa03efeb7bd40aa5d79850f2ebdc5f
parent54c16aae7f33dc39836b3f40d2c1afcd1dac6bf2 (diff)
downloadydb-4b74ecb3d4b0394d9e045a31e6a4e32632ce76c3.tar.gz
YT-21993: Fix the return type
commit_hash:dc26d0ae5ce882e160743951aef3d303bdf1050d
-rw-r--r--yt/yt/core/phoenix/type_def-inl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/core/phoenix/type_def-inl.h b/yt/yt/core/phoenix/type_def-inl.h
index 47726ced5d..91d3e6e6b2 100644
--- a/yt/yt/core/phoenix/type_def-inl.h
+++ b/yt/yt/core/phoenix/type_def-inl.h
@@ -662,13 +662,13 @@ public:
auto SinceVersion(TVersion version) &&
{
MinVersion_ = version;
- return TFieldLoadRegistrar(std::move(*this));
+ return TVirtualFieldLoadRegistrar(std::move(*this));
}
auto BeforeVersion(TVersion version) &&
{
BeforeVersion_ = version;
- return TFieldLoadRegistrar(std::move(*this));
+ return TVirtualFieldLoadRegistrar(std::move(*this));
}
auto WhenMissing(TFieldMissingHandler<TThis, TContext> handler) &&