mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
dbms: Client: fixed overflow in progress indicator [#CONV-2944].
This commit is contained in:
parent
4b1888ecf3
commit
76347e2e25
@ -705,7 +705,7 @@ private:
|
||||
size_t elapsed_ns = watch.elapsed();
|
||||
if (elapsed_ns)
|
||||
message << " ("
|
||||
<< rows_read_on_server * 1000000000 / elapsed_ns << " rows/s., "
|
||||
<< rows_read_on_server * 1000000000.0 / elapsed_ns << " rows/s., "
|
||||
<< bytes_read_on_server * 1000.0 / elapsed_ns << " MB/s.) ";
|
||||
else
|
||||
message << ". ";
|
||||
|
Loading…
Reference in New Issue
Block a user