aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/structured_table_formats.cpp
diff options
context:
space:
mode:
authorilnurkh <ilnurkh@yandex-team.com>2023-10-17 08:15:04 +0300
committerilnurkh <ilnurkh@yandex-team.com>2023-10-17 08:48:26 +0300
commitd6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2 (patch)
tree1196e15738b69c620780a9f62a7b11ac2e20bcfe /yt/cpp/mapreduce/client/structured_table_formats.cpp
parent0e978a7806dcbea4612c1749c98a5ebdb6e16539 (diff)
downloadydb-d6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2.tar.gz
Y_FAIL->Y_ABORT at '^yt'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'yt/cpp/mapreduce/client/structured_table_formats.cpp')
-rw-r--r--yt/cpp/mapreduce/client/structured_table_formats.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/client/structured_table_formats.cpp b/yt/cpp/mapreduce/client/structured_table_formats.cpp
index 60e3d61c99..f277a8dabe 100644
--- a/yt/cpp/mapreduce/client/structured_table_formats.cpp
+++ b/yt/cpp/mapreduce/client/structured_table_formats.cpp
@@ -263,7 +263,7 @@ TStructuredRowStreamDescription GetJobStreamDescription(
case EIODirection::Output:
return job.GetOutputRowStreamDescription();
default:
- Y_FAIL("unreachable");
+ Y_ABORT("unreachable");
}
}
@@ -275,7 +275,7 @@ TString GetSuffix(EIODirection direction)
case EIODirection::Output:
return "_output";
}
- Y_FAIL("unreachable");
+ Y_ABORT("unreachable");
}
TString GetAddIOMethodName(EIODirection direction)
@@ -286,7 +286,7 @@ TString GetAddIOMethodName(EIODirection direction)
case EIODirection::Output:
return "AddOutput<>";
}
- Y_FAIL("unreachable");
+ Y_ABORT("unreachable");
}
////////////////////////////////////////////////////////////////////////////////