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:
Julia Kartseva 2023-12-19 03:47:22 +00:00
parent bfd403cc8c
commit 31f04b66c5

View File

@ -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()