mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
fix freebsd build
https://github.com/ClickHouse/ClickHouse/actions/runs/7256640256/job/19769624432?pr=58015#step:8:5466 ``` Dec 19 03:09:41 /build/src/IO/AIO.cpp:140:15: error: use of undeclared identifier 'ErrnoException'; did you mean 'DB::ErrnoException'? Dec 19 03:09:41 140 | throw ErrnoException(DB::ErrorCodes::CANNOT_IOSETUP, "io_setup failed"); ```
This commit is contained in:
parent
bfd403cc8c
commit
31f04b66c5
@ -137,7 +137,7 @@ AIOContext::AIOContext(unsigned int)
|
||||
{
|
||||
ctx = io_setup();
|
||||
if (ctx < 0)
|
||||
throw ErrnoException(DB::ErrorCodes::CANNOT_IOSETUP, "io_setup failed");
|
||||
throw DB::ErrnoException(DB::ErrorCodes::CANNOT_IOSETUP, "io_setup failed");
|
||||
}
|
||||
|
||||
AIOContext::~AIOContext()
|
||||
|
Loading…
Reference in New Issue
Block a user