Skip to content

Commit de89ebe

Browse files
committed
More translated comments
1 parent b8148e1 commit de89ebe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

clickhouse/protocol.h

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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)