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