mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
fix for clang-tidy
This commit is contained in:
parent
7b09ec9ccb
commit
906a181b97
@ -50,9 +50,9 @@ public:
|
||||
return tryDeserializeTextNoEmptyCheckJSON(column, istr, format_settings);
|
||||
}
|
||||
|
||||
virtual void deserializeTextNoEmptyCheckJSON(IColumn & column, ReadBuffer & istr, const FormatSettings &) const override = 0;
|
||||
void deserializeTextNoEmptyCheckJSON(IColumn & column, ReadBuffer & istr, const FormatSettings &) const override = 0;
|
||||
|
||||
virtual bool tryDeserializeTextNoEmptyCheckJSON(IColumn & /*column*/, ReadBuffer & /*istr*/, const FormatSettings &) const override
|
||||
bool tryDeserializeTextNoEmptyCheckJSON(IColumn & /*column*/, ReadBuffer & /*istr*/, const FormatSettings &) const override
|
||||
{
|
||||
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method tryDeserializeTextNoEmptyCheckJSON is not supported");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user