ClickHouse/docker/test/fuzzer/query-fuzzer-tweaks-users.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.6 KiB
XML
Raw Normal View History

<clickhouse>
2020-07-13 15:16:34 +00:00
<profiles>
<default>
<max_execution_time>10</max_execution_time>
2023-01-08 04:57:29 +00:00
<max_memory_usage>10G</max_memory_usage>
<!--
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).
-->
<constraints>
<max_execution_time>
<max>10</max>
</max_execution_time>
2021-01-06 01:07:59 +00:00
2021-01-22 00:13:47 +00:00
<max_memory_usage>
<max>5G</max>
2021-01-22 00:13:47 +00:00
</max_memory_usage>
<table_function_remote_max_addresses>
<max>200</max>
</table_function_remote_max_addresses>
<!-- Don't waste cycles testing the old interpreter. Spend time in the new analyzer instead -->
2024-07-12 12:49:26 +00:00
<enable_analyzer>
<readonly/>
2024-07-12 12:49:26 +00:00
</enable_analyzer>
<!-- This feature is broken, deprecated and will be removed. We don't want more reports about it -->
<allow_experimental_object_type>
<readonly/>
</allow_experimental_object_type>
<!-- Prevent stack overflow -->
<max_ast_depth>
<readonly/>
</max_ast_depth>
</constraints>
2020-07-13 15:16:34 +00:00
</default>
</profiles>
</clickhouse>