mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
Fix tests
This commit is contained in:
parent
f594ab34f5
commit
5497fa79ed
@ -73,7 +73,9 @@ template <typename Type>
|
||||
bool SerializationEnum<Type>::tryDeserializeTextQuoted(IColumn & column, ReadBuffer & istr, const FormatSettings &) const
|
||||
{
|
||||
std::string field_name;
|
||||
readQuotedStringWithSQLStyle(field_name, istr);
|
||||
if (!tryReadQuotedStringWithSQLStyle(field_name, istr))
|
||||
return false;
|
||||
|
||||
FieldType x;
|
||||
if (!ref_enum_values.tryGetValue(x, StringRef(field_name)))
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user