Merge branch 'arrays-as-nested-csv' of github.com:yandex/ClickHouse into arrays-as-nested-csv

This commit is contained in:
Alexey Milovidov 2020-12-22 00:33:24 +03:00
commit 667c6501bf

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
{