From 092ed1df15be5c59aaac5cc1d91b030433ca16b6 Mon Sep 17 00:00:00 2001 From: tavplubix Date: Fri, 7 Feb 2020 16:38:37 +0300 Subject: [PATCH] Update JSONEachRowRowInputFormat.cpp --- dbms/src/Processors/Formats/Impl/JSONEachRowRowInputFormat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Processors/Formats/Impl/JSONEachRowRowInputFormat.cpp b/dbms/src/Processors/Formats/Impl/JSONEachRowRowInputFormat.cpp index 238dbb79818..c4cd64bd5b4 100644 --- a/dbms/src/Processors/Formats/Impl/JSONEachRowRowInputFormat.cpp +++ b/dbms/src/Processors/Formats/Impl/JSONEachRowRowInputFormat.cpp @@ -220,7 +220,7 @@ bool JSONEachRowRowInputFormat::readRow(MutableColumns & columns, RowReadExtensi return false; skipWhitespaceIfAny(in); - /// We consume ;, or \n or before scanning a new row, instead scanning to next row at the end. + /// We consume , or \n before scanning a new row, instead scanning to next row at the end. /// The reason is that if we want an exact number of rows read with LIMIT x /// from a streaming table engine with text data format, like File or Kafka /// then seeking to next ;, or \n would trigger reading of an extra row at the end.