From 6239a1a2350492db58cede64a34584eee0c954f8 Mon Sep 17 00:00:00 2001 From: avogar Date: Wed, 21 Sep 2022 11:29:00 +0000 Subject: [PATCH] Fix build --- .../Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp b/src/Processors/Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp index 543f14a218d..c9725e5f631 100644 --- a/src/Processors/Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp +++ b/src/Processors/Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp @@ -65,7 +65,7 @@ void JSONEachRowWithProgressRowOutputFormat::writeProgress() { if (i != 0) writeRowBetweenDelimiter(); - writeString(Sprogress_lines[i], out); + writeString(progress_lines[i], out); } progress_lines.clear(); has_progress = false;