1 #ifndef CONTRIBUTORS_INCLUDED
2 #define CONTRIBUTORS_INCLUDED
3 
4 /* Copyright (c) 2006 MySQL AB, 2009 Sun Microsystems, Inc.
5    Use is subject to license terms.
6 
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; version 2 of the License.
10 
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15 
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1335  USA */
19 
20 /* Structure of the name list */
21 
22 struct show_table_contributors_st {
23   const char *name;
24   const char *location;
25   const char *comment;
26 };
27 
28 /*
29   Output from "SHOW CONTRIBUTORS"
30 
31   Get permission before editing.
32 
33   Names should be encoded using UTF-8.
34 
35   See also https://mariadb.com/kb/en/log-of-mariadb-contributions/
36 */
37 
38 struct show_table_contributors_st show_table_contributors[]= {
39   /* MariaDB foundation sponsors, in contribution, size , time order */
40   {"Alibaba Cloud", "https://www.alibabacloud.com/", "Platinum Sponsor of the MariaDB Foundation"},
41   {"Tencent Cloud", "https://cloud.tencent.com", "Platinum Sponsor of the MariaDB Foundation"},
42   {"Microsoft", "https://microsoft.com/", "Platinum Sponsor of the MariaDB Foundation"},
43   {"MariaDB Corporation", "https://mariadb.com", "Founding member, Platinum Sponsor of the MariaDB Foundation"},
44   {"ServiceNow", "https://servicenow.com", "Platinum Sponsor of the MariaDB Foundation"},
45   {"Visma", "https://visma.com", "Gold Sponsor of the MariaDB Foundation"},
46   {"DBS", "https://dbs.com", "Gold Sponsor of the MariaDB Foundation"},
47   {"IBM", "https://www.ibm.com", "Gold Sponsor of the MariaDB Foundation"},
48   {"Automattic", "https://automattic.com", "Silver Sponsor of the MariaDB Foundation"},
49   {"Percona", "https://www.percona.com/", "Sponsor of the MariaDB Foundation"},
50   {"Galera Cluster", "https://galeracluster.com", "Sponsor of the MariaDB Foundation"},
51 
52   /* Sponsors of important features */
53   {"Google", "USA", "Sponsoring encryption, parallel replication and GTID"},
54   {"Facebook", "USA", "Sponsoring non-blocking API, LIMIT ROWS EXAMINED etc"},
55 
56   /* Individual contributors, names in historical order, newer first */
57   {"Ronald Bradford", "Brisbane, Australia", "EFF contribution for UC2006 Auction"},
58   {"Sheeri Kritzer", "Boston, Mass. USA", "EFF contribution for UC2006 Auction"},
59   {"Mark Shuttleworth", "London, UK.", "EFF contribution for UC2006 Auction"},
60   {NULL, NULL, NULL}
61 };
62 
63 #endif /* CONTRIBUTORS_INCLUDED */
64