dbms: fix build

This commit is contained in:
Pavel Kartavyy 2016-06-16 15:14:06 +03:00
parent f2b386a7d0
commit 6bf83872ad

View File

@ -124,7 +124,7 @@ protected:
if (!qlz_state)
qlz_state = std::make_unique<qlz_state_decompress>();
qlz_decompress(&compressed_buffer[0], to, qlz_state);
qlz_decompress(&compressed_buffer[0], to, qlz_state.get());
#else
throw Exception("QuickLZ compression method is disabled", ErrorCodes::UNKNOWN_COMPRESSION_METHOD);
#endif