fix for clang-tidy

This commit is contained in:
Alexis Arnaud 2024-07-23 12:28:23 +02:00
parent 7b09ec9ccb
commit 906a181b97

View File

@ -50,9 +50,9 @@ public:
return tryDeserializeTextNoEmptyCheckJSON(column, istr, format_settings); 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"); throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method tryDeserializeTextNoEmptyCheckJSON is not supported");
} }