1. contributors(CK贡献者)
CK的贡献者名称列表,再此对所有 ClickHouse 的贡献着表示感谢!
| name | type | comment |
|---|---|---|
| name | String |
2. macros(宏变量)
包含动态变量的信息
| name | type | comment |
|---|---|---|
| macro | String | 变量名 |
| substitution | String | 变量值 |
3. numbers(自然数表)
包含一个名为 number 的 UInt64 列,该列包含几乎所有从零开始的自然数。可以使用此表进行测试。从此表中读取不是并行化的。
| name | type | comment |
|---|---|---|
| number | UInt64 |
4. numbers_mt(自然数表)
包含一个名为 number 的 UInt64 列,该列包含几乎所有从零开始的自然数。可以使用此表进行测试。从此表中读取支持并行化的。
| name | type | comment |
|---|---|---|
| number | UInt64 | — |
5. one
该表包含一行,其中一个dummyUInt8 列包含值 0。
如果SELECT查询未指定FROM子句,则使用此表。
这类似于DUAL在其他 DBMS 中找到的表。
| name | type | comment |
|---|---|---|
| dummy | UInt8 | — |
6. build_options(版本相关信息)
| name | type | comment |
|---|---|---|
| name | String | 参数名称 |
| value | String | 参数值 |
7. models(模型表)
| name | type | comment |
|---|---|---|
| name | String | 模型名称 |
| status | Enum8( ‘NOT_LOADED’ = 0, ‘LOADED’ = 1, ‘FAILED’ = 2, ‘LOADING’ = 3, ‘FAILED_AND_RELOADING’ = 4, ‘LOADED_AND_RELOADING’ = 5, ‘NOT_EXIST’ = 6 ) |
状态 |
| origin | String | 来源 |
| type | String | 类型 |
| loading_start_time | DateTime | 加载时间 |
| loading_duration | Float32 | 加载耗时 |
| last_exception | String | 记录上次异常 |
8. licenses(许可信息)
包含位于 ClickHouse 源的 contrib 目录中的第三方库的许可证
| name | type | comment |
|---|---|---|
| library_name | String | |
| license_type | String | |
| license_path | String | |
| license_text | String |