Skip to content

Commit 0835e23

Browse files
authored
Merge pull request #193 from Enmk/Enmk-translate-comments
Translate comments
2 parents 28cf6e4 + de89ebe commit 0835e23

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

clickhouse/base/compressed.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bool CompressedInput::Decompress() {
7575

7676
Buffer tmp(compressed);
7777

78-
// Заполнить заголовок сжатых данных.
78+
// Data header
7979
{
8080
BufferOutput out(&tmp);
8181
out.Write(&method, sizeof(method));

clickhouse/protocol.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace clickhouse {
1919
};
2020
}
2121

22-
/// То, что передаёт клиент.
22+
/// Types of packets sent by client.
2323
namespace ClientCodes {
2424
enum {
2525
Hello = 0, /// Name, version, default database name.

clickhouse/query.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ namespace clickhouse {
1414
* Settings of individual query.
1515
*/
1616
struct QuerySettings {
17-
/// Максимальное количество потоков выполнения запроса. По-умолчанию - определять автоматически.
17+
/// Maximum thread to use on the server-side to process a query. Default - let the server choose.
1818
int max_threads = 0;
19-
/// Считать минимумы и максимумы столбцов результата.
19+
/// Compute min and max values of the result.
2020
bool extremes = false;
21-
/// Тихо пропускать недоступные шарды.
21+
/// Silently skip unavailable shards.
2222
bool skip_unavailable_shards = false;
2323
/// Write statistics about read rows, bytes, time elapsed, etc.
2424
bool output_format_write_statistics = true;

0 commit comments

Comments
 (0)