mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Better exception message during Tuple JSON deserialization
This commit is contained in:
parent
9d116e6f5c
commit
e433ecc18f
@ -231,7 +231,15 @@ void SerializationTuple::deserializeTextJSON(IColumn & column, ReadBuffer & istr
|
|||||||
|
|
||||||
seen_elements[element_pos] = 1;
|
seen_elements[element_pos] = 1;
|
||||||
auto & element_column = extractElementColumn(column, element_pos);
|
auto & element_column = extractElementColumn(column, element_pos);
|
||||||
elems[element_pos]->deserializeTextJSON(element_column, istr, settings);
|
try
|
||||||
|
{
|
||||||
|
elems[element_pos]->deserializeTextJSON(element_column, istr, settings);
|
||||||
|
}
|
||||||
|
catch (Exception & e)
|
||||||
|
{
|
||||||
|
e.addMessage("(while reading the value of nested key " + name + ")");
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
skipWhitespaceIfAny(istr);
|
skipWhitespaceIfAny(istr);
|
||||||
++processed;
|
++processed;
|
||||||
|
Loading…
Reference in New Issue
Block a user