mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
14 lines
567 B
Markdown
14 lines
567 B
Markdown
The list of functions generated via following query
|
|
|
|
```
|
|
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)
|