diff options
author | ivanmorozov <[email protected]> | 2023-06-13 18:32:45 +0300 |
---|---|---|
committer | ivanmorozov <[email protected]> | 2023-06-13 18:32:45 +0300 |
commit | 407487ac6c043b8ef49e5ee9dc4780c33ce5a385 (patch) | |
tree | a24169128b88a4af06fb0ff8e582593daeeefe41 | |
parent | c734b6624dec0175d33d3598fb4061e152e83c32 (diff) |
fix
Note: mandatory check (NEED_CHECK) was skipped
-rw-r--r-- | ydb/public/lib/ydb_cli/commands/click_bench.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ydb/public/lib/ydb_cli/commands/click_bench.cpp b/ydb/public/lib/ydb_cli/commands/click_bench.cpp index 8ff5dfebb28..b06263a3e21 100644 --- a/ydb/public/lib/ydb_cli/commands/click_bench.cpp +++ b/ydb/public/lib/ydb_cli/commands/click_bench.cpp @@ -161,12 +161,6 @@ bool TClickBenchCommandRun::RunBench(TConfig& config) } catch (...) { res = std::make_pair<TString, TString>("", CurrentExceptionMessage()); } - if (prevResult != res.first && !qInfo.IsCorrectResult(res.first)) { - outFStream << queryN << ": UNEXPECTED DIFF: " << Endl - << "RESULT: " << Endl << res.first << Endl - << "EXPECTATION: " << Endl << qInfo.GetExpectedResult() << Endl; - prevResult = res.first; - } auto duration = TInstant::Now() - t1; Cout << "\titeration " << i << ":\t"; |