mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Use in.count() instead of pos
This commit is contained in:
parent
da4d55cdaf
commit
516cda94ee
@ -47,7 +47,7 @@ namespace JSONUtils
|
||||
throw ParsingException(ErrorCodes::INCORRECT_DATA,
|
||||
"Size of JSON object at position {} is extremely large. Expected not greater than {} bytes, but current is {} bytes per row. "
|
||||
"Increase the value setting 'min_chunk_bytes_for_parallel_parsing' or check your data manually, "
|
||||
"most likely JSON is malformed", pos, min_bytes, current_object_size);
|
||||
"most likely JSON is malformed", in.count(), min_bytes, current_object_size);
|
||||
|
||||
if (quotes)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user