mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #40072 from ClickHouse/tavplubix-patch-3
Finally fix `_csv.Error: field larger than field limit`
This commit is contained in:
commit
2f77266962
@ -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 (
|
||||
|
Loading…
Reference in New Issue
Block a user