Skip to content

Commit 04722c8

Browse files
committed
Fixes
1 parent e3fcd8b commit 04722c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ void TCommandExecuteQuery::PrintDataQueryResponse(NTable::TDataQueryResult& resu
555555
NJson::ReadJsonTree(*meta, &metaJson, true);
556556
diagnosticsJson.InsertValue("meta", metaJson);
557557
}
558-
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), true);
558+
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), false);
559559
}
560560

561561
if (FlameGraphPath && !stats.has_value()) {
@@ -844,7 +844,7 @@ bool TCommandExecuteQuery::PrintQueryResponse(TIterator& result) {
844844
metaJson.InsertValue("query_text", EscapeC(Query));
845845
diagnosticsJson.InsertValue("meta", metaJson);
846846
}
847-
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), true);
847+
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), false);
848848
}
849849

850850
PrintFlameGraph(fullStats);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ int TCommandSql::PrintResponse(NQuery::TExecuteQueryIterator& result) {
270270
metaJson.InsertValue("query_text", EscapeC(Query));
271271
diagnosticsJson.InsertValue("meta", metaJson);
272272
}
273-
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), true);
273+
file << NJson::PrettifyJson(NJson::WriteJson(diagnosticsJson, true), false);
274274
}
275275

276276
if (IsInterrupted()) {

0 commit comments

Comments
 (0)