Skip to content

Commit b3d3961

Browse files
authored
[CLI] Made workload explain pretty table print without breaking lines (#15336)
1 parent 4d0fb2e commit b3d3961

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/public/lib/ydb_cli/commands/ydb_benchmark.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,12 +515,12 @@ void TWorkloadCommandBenchmark::SavePlans(const BenchmarkUtils::TQueryBenchmarkR
515515
if (res.GetQueryPlan()) {
516516
{
517517
TFileOutput out(planFName + "table");
518-
TQueryPlanPrinter queryPlanPrinter(EDataFormat::PrettyTable, true, out, 120);
518+
TQueryPlanPrinter queryPlanPrinter(EDataFormat::PrettyTable, true, out);
519519
queryPlanPrinter.Print(res.GetQueryPlan());
520520
}
521521
{
522522
TFileOutput out(planFName + "json");
523-
TQueryPlanPrinter queryPlanPrinter(EDataFormat::JsonBase64, true, out, 120);
523+
TQueryPlanPrinter queryPlanPrinter(EDataFormat::JsonBase64, true, out);
524524
queryPlanPrinter.Print(res.GetQueryPlan());
525525
}
526526
{

0 commit comments

Comments
 (0)