From f2933e7623d3c524aa7b33f5377ef58a07fa1cfd Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 28 Mar 2017 06:54:25 +0300 Subject: [PATCH] Fixed double whitespace [#CLICKHOUSE-2]. --- dbms/src/DataStreams/IProfilingBlockInputStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/DataStreams/IProfilingBlockInputStream.cpp b/dbms/src/DataStreams/IProfilingBlockInputStream.cpp index ebe886e1577..0bc6c231e05 100644 --- a/dbms/src/DataStreams/IProfilingBlockInputStream.cpp +++ b/dbms/src/DataStreams/IProfilingBlockInputStream.cpp @@ -152,7 +152,7 @@ bool IProfilingBlockInputStream::checkLimits() if (limits.max_rows_to_read && info.rows > limits.max_rows_to_read) { if (limits.read_overflow_mode == OverflowMode::THROW) - throw Exception(std::string("Limit for result rows ") + throw Exception(std::string("Limit for result rows") + " exceeded: read " + toString(info.rows) + " rows, maximum: " + toString(limits.max_rows_to_read), ErrorCodes::TOO_MUCH_ROWS);