From 542eba7e177416b66e12b56246d5ea90053d1940 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Wed, 10 May 2017 00:30:33 -0400 Subject: [PATCH] Fixed translation errors [#CLICKHOUSE-3]. --- dbms/src/AggregateFunctions/AggregateFunctionGroupArray.h | 2 +- dbms/src/Common/FileChecker.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/AggregateFunctions/AggregateFunctionGroupArray.h b/dbms/src/AggregateFunctions/AggregateFunctionGroupArray.h index eb9f035f5fe..114495d9e5a 100644 --- a/dbms/src/AggregateFunctions/AggregateFunctionGroupArray.h +++ b/dbms/src/AggregateFunctions/AggregateFunctionGroupArray.h @@ -100,7 +100,7 @@ public: -/// General case (ineffective). NOTE You can also implement a special case for strings. +/// General case (inefficient). NOTE You can also implement a special case for strings. struct AggregateFunctionGroupArrayDataGeneric { Array value; /// TODO Add MemoryTracker diff --git a/dbms/src/Common/FileChecker.cpp b/dbms/src/Common/FileChecker.cpp index fb5a12c5bf7..66e315fd754 100644 --- a/dbms/src/Common/FileChecker.cpp +++ b/dbms/src/Common/FileChecker.cpp @@ -136,7 +136,7 @@ void FileChecker::load(Map & map) const ReadBufferFromFile in(files_info_path); WriteBufferFromString out(content); - /// The JSON library does not support whitespace. We delete them. Ineffective. + /// The JSON library does not support whitespace. We delete them. Inefficient. while (!in.eof()) { char c;