system.contributors

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

Columns:

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

Example

  1. SELECT * FROM system.contributors LIMIT 10
  1. ┌─name─────────────┐
  2. Olga Khvostikova
  3. Max Vetrov
  4. LiuYangkuan
  5. svladykin
  6. zamulla
  7. Šimon Podlipský
  8. BayoNet
  9. Ilya Khomutov
  10. Amy Krishnevsky
  11. Loud_Scream
  12. └──────────────────┘

To find out yourself in the table, use a query:

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

Original article