Fixed translation errors [#CLICKHOUSE-3].

This commit is contained in:
Alexey Milovidov 2017-05-10 00:30:33 -04:00
parent 27a324b469
commit 542eba7e17
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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;