ClickHouse/tests/fuzz/README.md

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

14 lines
567 B
Markdown
Raw Normal View History

2023-09-04 13:43:45 +00:00
The list of functions generated via following query
2021-10-01 13:55:51 +00:00
```
clickhouse-client -q "select concat('\"', name, '\"') from system.functions union all select concat('\"', alias_to, '\"') from system.functions where alias_to != '' " > functions.dict
```
The list of datatypes generated via following query:
```
clickhouse-client -q "select concat('\"', name, '\"') from system.data_type_families union all select concat('\"', alias_to, '\"') from system.data_type_families where alias_to != '' " > datatypes.dict
```
Then merge all dictionaries into one (all.dict)