summaryrefslogtreecommitdiff
path: root/sql/authors.h
blob: 28dfc59426c085ca7cc69de7ca3be8e219052f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***************************************************************************
** Output from "SHOW AUTHORS"
** If you can update it, you get to be in it :)
** Dont be offended if your name is not in here, just add it!
** IMPORTANT: Names should be added in alphabetical order
***************************************************************************/

struct show_table_authors_st {
  const char *name;
  const char *location;
  const char *comment;
};

struct show_table_authors_st show_table_authors[]= {
  { "Brian \"Krow\" Aker", "Seattle, WA. USA", 
    "Architecture, archive, federated, buncha of little stuff :)" },
  { "David Axmark", "Uppsala, Sweden", "Small stuff long time ago, Monty ripped it out!"},
  { "Omer BarNir", "Sunnyvale, CA. USA", "Testing (sometimes) and general QA stuff"},
  { "Nikolay Grishakin", "Austin, TX. USA", "Testing - Server"},
  { "Serge Kozlov", "Velikie Luki, Russia", "Testing - Cluster"},
  { "Matthias Leich", "Berlin, Germany", "Testing - Server"},
  { "Jonathan (Jeb) Miller", "Kyle, TX. USA", "Testing - Cluster, Replication"},
  { "Carsten Segieth (Pino)", "Fredersdorf, Germany", "Testing - Server"},
  { "Punita Srivastava", "Austin, TX. USA", "Testing - Merlin"},
  { "Alexey Stroganov (Ranger)", "Lugansk, Ukraine", "Testing - Benchmarks"},
  {NULL, NULL, NULL}
};