aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.ru>2022-03-29 18:31:55 +0300
committerudovichenko-r <udovichenko-r@yandex-team.ru>2022-03-29 18:31:55 +0300
commite94e3fd392abd801ffe9fd573b3591301eaa75e1 (patch)
tree37d85aae559b061b251bbe1aec69390ba345edb4
parente3f69492e8edb8671270e36de807e8ec863fd437 (diff)
downloadydb-e94e3fd392abd801ffe9fd573b3591301eaa75e1.tar.gz
[yql] Use exit(1) instead of abort in terminate handler
YQL-14589 ref:af954fb693cba570296659add067ebd1a03044f5
-rw-r--r--ydb/library/yql/minikql/computation/mkql_value_builder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/minikql/computation/mkql_value_builder.cpp b/ydb/library/yql/minikql/computation/mkql_value_builder.cpp
index ad476617158..6bfd8319df6 100644
--- a/ydb/library/yql/minikql/computation/mkql_value_builder.cpp
+++ b/ydb/library/yql/minikql/computation/mkql_value_builder.cpp
@@ -44,8 +44,8 @@ void TDefaultValueBuilder::Terminate(const char* message) const {
ythrow yexception() << fullMessage;
}
- Cerr << fullMessage;
- abort();
+ Cerr << fullMessage << Flush;
+ _exit(1);
}
NUdf::TUnboxedValue TDefaultValueBuilder::NewStringNotFilled(ui32 size) const