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-03 02:53:26 +02: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-03 02:53:26 +02: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
|
2006-12-31 02:29:11 +01:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2006-05-03 02:53:26 +02: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 08:31:43 +01:00
|
|
|
|
|
|
|
See also https://mariadb.com/kb/en/log-of-mariadb-contributions/
|
2006-05-03 02:53:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct show_table_contributors_st show_table_contributors[]= {
|
2014-03-28 08:31:43 +01:00
|
|
|
/* MariaDB foundation members, in contribution, size , time order */
|
2016-02-04 15:00:11 +01:00
|
|
|
{"Booking.com", "http://www.booking.com", "Founding member of the MariaDB Foundation"},
|
|
|
|
{"MariaDB Corporation", "https://mariadb.com", "Founding member of the MariaDB Foundation"},
|
2016-03-15 13:41:29 +01:00
|
|
|
{"Auttomattic", "http://automattic.com", "Member of the MariaDB Foundation"},
|
|
|
|
{"Visma", "http://visma.com", "Member of the MariaDB Foundation"},
|
|
|
|
{"Nexedi", "http://www.nexedi.com", "Member of the MariaDB Foundation"},
|
2016-02-04 15:00:11 +01:00
|
|
|
{"Acronis", "http://www.acronis.com", "Member of the MariaDB Foundation"},
|
2013-09-23 19:27:37 +02:00
|
|
|
|
|
|
|
/* Smaller sponsors, newer per year */
|
2016-02-04 15:00:11 +01:00
|
|
|
{"Verkkokauppa.com", "Finland", "Sponsor of the MariaDB Foundation"},
|
2016-05-27 18:25:14 +02:00
|
|
|
{"Virtuozzo", "https://virtuozzo.com/", "Sponsor of the MariaDB Foundation"},
|
2013-09-23 19:27:37 +02:00
|
|
|
|
2014-03-28 08:31:43 +01:00
|
|
|
/* Sponsors of important features */
|
2016-03-15 13:41:29 +01:00
|
|
|
{"Google", "USA", "Sponsoring encryption, parallel replication and GTID"},
|
2014-03-28 08:31:43 +01:00
|
|
|
{"Facebook", "USA", "Sponsoring non-blocking API, LIMIT ROWS EXAMINED etc"},
|
|
|
|
|
2013-09-23 19:27:37 +02:00
|
|
|
/* Individual contributors, names in historical order, newer first */
|
2006-05-03 02:53:26 +02: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 */
|