Merge pull request #52859 from ClickHouse/fix-00612_http_max_query_size

Try to fix a rare fail in 00612_http_max_query_size
This commit is contained in:
Nikolai Kochetov 2023-08-02 17:13:04 +02:00 committed by GitHub
commit 1b71c038f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ def gen_data(q):
pattern = ''' or toString(number) = '{}'\n'''
for i in range(1, 4 * 1024):
for i in range(0, 1024 * 2):
yield pattern.format(str(i).zfill(1024 - len(pattern) + 2)).encode()
s = requests.Session()