Merge pull request #8767 from ClickHouse/aku/null-format

Fix sending no data to client with Null format.
This commit is contained in:
alesapin 2020-01-22 13:06:16 +03:00 committed by GitHub
commit 0d484be01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,6 +66,8 @@ struct BlockIO
finish_callback = rhs.finish_callback;
exception_callback = rhs.exception_callback;
null_format = rhs.null_format;
return *this;
}
};