Update TabSeparatedRowInputFormat.cpp

This commit is contained in:
alexey-milovidov 2020-08-20 20:32:49 +03:00 committed by GitHub
parent 189c284597
commit 911946b517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -340,7 +340,7 @@ void TabSeparatedRowInputFormat::tryDeserializeField(const DataTypePtr & type, I
if (*in.position() == 'N')
{
++in.position();
throw Exception("unexpected Null value of not Nullable type", ErrorCodes::INCORRECT_DATA);
throw Exception(ErrorCodes::INCORRECT_DATA, "Unexpected NULL value of not Nullable type {}", type->getName());
}
else
{