File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ydb/public/lib/ydb_cli/commands Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -555,7 +555,7 @@ void TCommandExecuteQuery::PrintDataQueryResponse(NTable::TDataQueryResult& resu
555
555
NJson::ReadJsonTree (*meta, &metaJson, true );
556
556
diagnosticsJson.InsertValue (" meta" , metaJson);
557
557
}
558
- file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), true );
558
+ file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), false );
559
559
}
560
560
561
561
if (FlameGraphPath && !stats.has_value ()) {
@@ -844,7 +844,7 @@ bool TCommandExecuteQuery::PrintQueryResponse(TIterator& result) {
844
844
metaJson.InsertValue (" query_text" , EscapeC (Query));
845
845
diagnosticsJson.InsertValue (" meta" , metaJson);
846
846
}
847
- file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), true );
847
+ file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), false );
848
848
}
849
849
850
850
PrintFlameGraph (fullStats);
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ int TCommandSql::PrintResponse(NQuery::TExecuteQueryIterator& result) {
270
270
metaJson.InsertValue (" query_text" , EscapeC (Query));
271
271
diagnosticsJson.InsertValue (" meta" , metaJson);
272
272
}
273
- file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), true );
273
+ file << NJson::PrettifyJson (NJson::WriteJson (diagnosticsJson, true ), false );
274
274
}
275
275
276
276
if (IsInterrupted ()) {
You can’t perform that action at this time.
0 commit comments