ClickHouse/docs/en/operations/system-tables/contributors.md
2022-06-02 04:55:18 -06:00

1008 B

contributors

Contains information about contributors. The order is random at query execution time.

Columns:

  • name (String) — Contributor (author) name from git log.

Example

SELECT * FROM system.contributors LIMIT 10
┌─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:

SELECT * FROM system.contributors WHERE name = 'Olga Khvostikova'
┌─name─────────────┐
│ Olga Khvostikova │
└──────────────────┘

Original article