Fix style

This commit is contained in:
Kruglov Pavel 2021-11-24 15:44:26 +03:00 committed by GitHub
parent 6987e5bfd0
commit 31f1103cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ void SerializationDecimal<T>::deserializeText(IColumn & column, ReadBuffer & ist
T x;
readText(x, istr);
assert_cast<ColumnType &>(column).getData().push_back(x);
if (whole && !istr.eof())
ISerialization::throwUnexpectedDataAfterParsedValue(column, istr, settings, "Decimal");
}