| 1216 | { |
| 1217 | |
| 1218 | inline ReservationPtr checkAndReturnReservation(UInt64 expected_size, ReservationPtr reservation) |
| 1219 | { |
| 1220 | if (reservation) |
| 1221 | return reservation; |
| 1222 | |
| 1223 | throw Exception(fmt::format("Cannot reserve {}, not enough space", ReadableSize(expected_size)), ErrorCodes::NOT_ENOUGH_SPACE); |
| 1224 | } |
| 1225 | |
| 1226 | } |
| 1227 |
no test coverage detected