mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
0ec292a65f
This reverts commit ff44b206
1.2 KiB
1.2 KiB
slug | sidebar_position | sidebar_label |
---|---|---|
/en/sql-reference/table-functions/fuzzQuery | 75 | fuzzQuery |
fuzzQuery
Perturbs the given query string with random variations.
fuzzQuery(query[, max_query_length[, random_seed]])
Arguments
query
(String) - The source query to perform the fuzzing on.max_query_length
(UInt64) - A maximum length the query can get during the fuzzing process.random_seed
(UInt64) - A random seed for producing stable results.
Returned Value
A table object with a single column containing perturbed query strings.
Usage Example
SELECT * FROM fuzzQuery('SELECT materialize(\'a\' AS key) GROUP BY key') LIMIT 2;
┌─query──────────────────────────────────────────────────────────┐
1. │ SELECT 'a' AS key GROUP BY key │
2. │ EXPLAIN PIPELINE compact = true SELECT 'a' AS key GROUP BY key │
└────────────────────────────────────────────────────────────────┘