Merge pull request #38518 from ClickHouse/tavplubix-patch-1

Fix `_csv.Error: field larger than field limit`
This commit is contained in:
Alexander Tokmakov 2022-06-28 18:46:43 +03:00 committed by GitHub
commit 66cf6da35c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ def process_test_log(log_path):
test_end = True
test_results = [
(test[0], test[1], test[2], "".join(test[3])) for test in test_results
(test[0], test[1], test[2], "".join(test[3]))[:4096] for test in test_results
]
return (