Update DataTypeArray.cpp

This commit is contained in:
alexey-milovidov 2020-12-20 14:07:53 +03:00 committed by GitHub
parent ae9b67fefa
commit 38dec4ccaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -313,7 +313,7 @@ static void deserializeTextImpl(IColumn & column, ReadBuffer & istr, Reader && r
if (checkChar('[', istr))
has_braces = true;
else if (!allow_unenclosed)
throw Exception(ErrorCodes::CANNOT_READ_ARRAY_FROM_TEXT, "Array does not start with '[' character");
throw Exception(ErrorCodes::CANNOT_READ_ARRAY_FROM_TEXT, "Array does not start with '[' character");
try
{