diff options
author | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-17 08:15:04 +0300 |
---|---|---|
committer | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-17 08:48:26 +0300 |
commit | d6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2 (patch) | |
tree | 1196e15738b69c620780a9f62a7b11ac2e20bcfe /yt/cpp/mapreduce/interface/io.cpp | |
parent | 0e978a7806dcbea4612c1749c98a5ebdb6e16539 (diff) | |
download | ydb-d6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2.tar.gz |
Y_FAIL->Y_ABORT at '^yt'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'yt/cpp/mapreduce/interface/io.cpp')
-rw-r--r-- | yt/cpp/mapreduce/interface/io.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/interface/io.cpp b/yt/cpp/mapreduce/interface/io.cpp index f97629721a..bbd417893c 100644 --- a/yt/cpp/mapreduce/interface/io.cpp +++ b/yt/cpp/mapreduce/interface/io.cpp @@ -15,17 +15,17 @@ TMaybe<size_t> IReaderImplBase::GetReadByteCount() const i64 IReaderImplBase::GetTabletIndex() const { - Y_FAIL("Unimplemented"); + Y_ABORT("Unimplemented"); } bool IReaderImplBase::IsEndOfStream() const { - Y_FAIL("Unimplemented"); + Y_ABORT("Unimplemented"); } bool IReaderImplBase::IsRawReaderExhausted() const { - Y_FAIL("Unimplemented"); + Y_ABORT("Unimplemented"); } //////////////////////////////////////////////////////////////////////////////// |