Update Query.cpp

This commit is contained in:
alexey-milovidov 2021-09-18 15:46:48 +03:00 committed by GitHub
parent c99bd06195
commit c4b3add859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ void Query::executeImpl()
default:
/// Add query to the exception message, since it may differs from the user input query.
/// (also you can use this and create query with an error to see what query ClickHouse created)
throw BadQuery(errorMessage(mysql_driver) + "(query: " + query_string + ")", err_no);
throw BadQuery(errorMessage(mysql_driver) + " (query: " + query_string + ")", err_no);
}
}
}