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