mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
19 lines
310 B
C++
19 lines
310 B
C++
|
#include <DB/DataStreams/IRowInputStream.h>
|
||
|
#include <DB/Common/Exception.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
namespace ErrorCodes
|
||
|
{
|
||
|
extern const int NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
void IRowInputStream::syncAfterError()
|
||
|
{
|
||
|
throw Exception("Method syncAfterError is not implemented for input format", ErrorCodes::NOT_IMPLEMENTED);
|
||
|
}
|
||
|
|
||
|
}
|