2022-08-28 13:53:52 +00:00
|
|
|
---
|
2022-08-28 13:58:27 +00:00
|
|
|
slug: /en/operations/system-tables/contributors
|
2022-08-28 13:53:52 +00:00
|
|
|
---
|
2022-06-02 10:55:18 +00:00
|
|
|
# contributors
|
2020-06-18 08:24:31 +00:00
|
|
|
|
|
|
|
Contains information about contributors. The order is random at query execution time.
|
|
|
|
|
|
|
|
Columns:
|
|
|
|
|
2023-04-19 15:55:29 +00:00
|
|
|
- `name` (String) — Contributor (author) name from git log.
|
2020-06-18 08:24:31 +00:00
|
|
|
|
|
|
|
**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 │
|
|
|
|
└──────────────────┘
|
|
|
|
```
|