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-1301 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 *; |
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 | {"Booking.com" , "https://www.booking.com" , "Founding member, Platinum Sponsor of the MariaDB Foundation" }, |
41 | {"Alibaba Cloud" , "https://www.alibabacloud.com/" , "Platinum Sponsor of the MariaDB Foundation" }, |
42 | {"Tencent Cloud" , "https://cloud.tencent.com" , "Platinum Sponsor of the MariaDB Foundation" }, |
43 | {"Microsoft" , "https://microsoft.com/" , "Platinum Sponsor of the MariaDB Foundation" }, |
44 | {"MariaDB Corporation" , "https://mariadb.com" , "Founding member, 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 | {"Nexedi" , "https://www.nexedi.com" , "Silver Sponsor of the MariaDB Foundation" }, |
49 | {"Acronis" , "http://www.acronis.com" , "Silver Sponsor of the MariaDB Foundation" }, |
50 | {"Verkkokauppa.com" , "https://www.verkkokauppa.com" , "Bronze Sponsor of the MariaDB Foundation" }, |
51 | {"Virtuozzo" , "https://virtuozzo.com" , "Bronze Sponsor of the MariaDB Foundation" }, |
52 | {"Tencent Game DBA" , "http://tencentdba.com/about" , "Bronze Sponsor of the MariaDB Foundation" }, |
53 | {"Tencent TDSQL" , "http://tdsql.org" , "Bronze Sponsor of the MariaDB Foundation" }, |
54 | |
55 | /* Sponsors of important features */ |
56 | {"Google" , "USA" , "Sponsoring encryption, parallel replication and GTID" }, |
57 | {"Facebook" , "USA" , "Sponsoring non-blocking API, LIMIT ROWS EXAMINED etc" }, |
58 | |
59 | /* Individual contributors, names in historical order, newer first */ |
60 | {"Ronald Bradford" , "Brisbane, Australia" , "EFF contribution for UC2006 Auction" }, |
61 | {"Sheeri Kritzer" , "Boston, Mass. USA" , "EFF contribution for UC2006 Auction" }, |
62 | {"Mark Shuttleworth" , "London, UK." , "EFF contribution for UC2006 Auction" }, |
63 | {NULL, NULL, NULL} |
64 | }; |
65 | |
66 | #endif /* CONTRIBUTORS_INCLUDED */ |
67 | |