mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
41 lines
937 B
Markdown
41 lines
937 B
Markdown
|
# system.contributors {#system-contributors}
|
||
|
|
||
|
Contains information about contributors. The order is random at query execution time.
|
||
|
|
||
|
Columns:
|
||
|
|
||
|
- `name` (String) — Contributor (author) name from git log.
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
``` 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 │
|
||
|
└──────────────────┘
|
||
|
```
|