Merge pull request #40072 from ClickHouse/tavplubix-patch-3

Finally fix `_csv.Error: field larger than field limit`
This commit is contained in:
Alexander Tokmakov 2022-08-11 14:04:21 +03:00 committed by GitHub
commit 2f77266962
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]))[:4096] for test in test_results
(test[0], test[1], test[2], "".join(test[3])[:4096]) for test in test_results
]
return (