mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
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:
commit
1b71c038f9
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user