mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
fixed a exception message
This commit is contained in:
parent
0c1733817b
commit
07045bc451
@ -231,7 +231,7 @@ void RemoteCacheController::deallocFile(std::unique_ptr<ReadBufferFromFileBase>
|
||||
{
|
||||
if (!file_buffer)
|
||||
{
|
||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Try to release a null file buffer for ", local_path.string());
|
||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Try to release a null file buffer for {}", local_path.string());
|
||||
}
|
||||
auto buffer_ref = reinterpret_cast<uintptr_t>(file_buffer.get());
|
||||
std::lock_guard lock{mutex};
|
||||
|
Loading…
Reference in New Issue
Block a user