aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpnv1 <pnv@ydb.tech>2023-02-13 11:26:01 +0300
committerpnv1 <pnv@ydb.tech>2023-02-13 11:26:01 +0300
commitcf46221fda88961656f0dcf1f05e22b719cafd11 (patch)
treeb0e68a63cd75d21c553f0376ad80c7a628c50504
parent2038572b4a78a86fd2bb2dbd3834b084fb71f8f6 (diff)
downloadydb-cf46221fda88961656f0dcf1f05e22b719cafd11.tar.gz
Do not unquote on query plan json prettification
-rw-r--r--ydb/public/lib/ydb_cli/common/format.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/public/lib/ydb_cli/common/format.cpp b/ydb/public/lib/ydb_cli/common/format.cpp
index d21494e6b4f..125c0cebd21 100644
--- a/ydb/public/lib/ydb_cli/common/format.cpp
+++ b/ydb/public/lib/ydb_cli/common/format.cpp
@@ -262,7 +262,7 @@ void TQueryPlanPrinter::Print(const TString& plan) {
}
void TQueryPlanPrinter::PrintJson(const TString& plan) {
- Cout << NJson::PrettifyJson(plan, true) << Endl;
+ Cout << NJson::PrettifyJson(plan, false) << Endl;
}
void TQueryPlanPrinter::PrintPretty(const NJson::TJsonValue& plan) {