mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
dbms: fix build
This commit is contained in:
parent
f2b386a7d0
commit
6bf83872ad
@ -124,7 +124,7 @@ protected:
|
|||||||
if (!qlz_state)
|
if (!qlz_state)
|
||||||
qlz_state = std::make_unique<qlz_state_decompress>();
|
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
|
#else
|
||||||
throw Exception("QuickLZ compression method is disabled", ErrorCodes::UNKNOWN_COMPRESSION_METHOD);
|
throw Exception("QuickLZ compression method is disabled", ErrorCodes::UNKNOWN_COMPRESSION_METHOD);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user