Merge pull request #45026 from ClickHouse/fix-fuzzer-3

Fix false positive in Fuzzer, alternative variant
This commit is contained in:
Alexey Milovidov 2023-01-08 04:59:13 +03:00 committed by GitHub
commit e07dd44f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,12 @@
<default>
<max_execution_time>10</max_execution_time>
<!--
Otherwise we will get the TOO_MANY_SIMULTANEOUS_QUERIES errors,
they are ok, but complicate debugging.
-->
<table_function_remote_max_addresses>200</table_function_remote_max_addresses>
<!--
Don't let the fuzzer change this setting (I've actually seen it
do this before).
@ -20,6 +26,10 @@
<allow_experimental_analyzer>
<readonly/>
</allow_experimental_analyzer>
<table_function_remote_max_addresses>
<max>200</max>
</table_function_remote_max_addresses>
</constraints>
</default>
</profiles>