Fixed error [#METR-2944].

This commit is contained in:
Alexey Milovidov 2016-07-31 13:43:54 +03:00
parent 47fc043fd9
commit 23a4a8bf19

View File

@ -32,9 +32,9 @@ struct Progress
void read(ReadBuffer & in, UInt64 server_revision)
{
size_t new_rows;
size_t new_bytes;
size_t new_total_rows;
size_t new_rows = 0;
size_t new_bytes = 0;
size_t new_total_rows = 0;
readVarUInt(new_rows, in);
readVarUInt(new_bytes, in);