system.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 │
└──────────────────┘
当前内容版权归 ClickHouse 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ClickHouse .