| 1 | #include <Formats/IRowInputStream.h> |
|---|---|
| 2 | #include <Common/Exception.h> |
| 3 | |
| 4 | |
| 5 | namespace DB |
| 6 | { |
| 7 | |
| 8 | namespace ErrorCodes |
| 9 | { |
| 10 | extern const int NOT_IMPLEMENTED; |
| 11 | } |
| 12 | |
| 13 | void IRowInputStream::syncAfterError() |
| 14 | { |
| 15 | throw Exception("Method syncAfterError is not implemented for input format", ErrorCodes::NOT_IMPLEMENTED); |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |