docs(system_tables): Added info about system.contributors

This commit is contained in:
Sergei Bocharov 2019-09-19 12:16:10 +03:00
parent 1fe79ad43c
commit 4be887a803
2 changed files with 79 additions and 0 deletions

View File

@ -91,6 +91,46 @@ The `system.columns` table contains the following columns (the column type is sh
- `is_in_primary_key` (UInt8) — Flag that indicates whether the column is in the primary key expression.
- `is_in_sampling_key` (UInt8) — Flag that indicates whether the column is in the sampling key expression.
## system.contributors {#system_contributors}
Contains information about contributors. Arbitrary selection.
Columns:
- `name` (String) — Contributor name.
**Пример**
```sql
SELECT * FROM system.contributors LIMIT 10
```
```text
┌─name─────────────┐
│ Olga Khvostikova │
│ Max Vetrov │
│ LiuYangkuan │
│ svladykin │
│ zamulla │
│ Šimon Podlipský │
│ BayoNet │
│ Ilya Khomutov │
│ Amy Krishnevsky │
│ Loud_Scream │
└──────────────────┘
```
To find out yourself in the table, use a query:
```sql
SELECT * FROM system.contributors WHERE name='Olga Khvostikova'
```
```text
┌─name─────────────┐
│ Olga Khvostikova │
└──────────────────┘
```
## system.databases
This table contains a single String column called 'name' the name of a database.

View File

@ -81,6 +81,45 @@ user String — имя пользователя, которого использ
- `is_in_primary_key` (UInt8) — флаг, показывающий включение столбца в первичный ключ.
- `is_in_sampling_key` (UInt8) — флаг, показывающий включение столбца в ключ выборки.
## system.contributors {#system_contributors}
Содержит информацию о контрибьютерах. Выборка произвольная.
Столбцы:
- `name` (String) — Имя контрибьютера.
**Пример**
```sql
SELECT * FROM system.contributors LIMIT 10
```
```text
┌─name─────────────┐
│ Olga Khvostikova │
│ Max Vetrov │
│ LiuYangkuan │
│ svladykin │
│ zamulla │
│ Šimon Podlipský │
│ BayoNet │
│ Ilya Khomutov │
│ Amy Krishnevsky │
│ Loud_Scream │
└──────────────────┘
```
Чтобы найти себя в таблице, выполните запрос:
```sql
SELECT * FROM system.contributors WHERE name='Olga Khvostikova'
```
```text
┌─name─────────────┐
│ Olga Khvostikova │
└──────────────────┘
```
## system.databases
Таблица содержит один столбец name типа String - имя базы данных.