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 */
|
2013-09-23 19:27:37 +02:00
|
|
|
{"Booking.com", "http://www.booking.com", "Founding member of the MariaDB foundation"},
|
|
|
|
{"SkySQL Ab", "http://www.skysql.com", "Founding member of the MariaDB foundation"},
|
2014-03-28 08:31:43 +01:00
|
|
|
{"Auttomatic", "http://automattic.com", "Member of the MariaDB foundation"},
|
2013-09-23 19:27:37 +02:00
|
|
|
{"Parallels", "http://www.parallels.com/products/plesk", "Founding member of the MariaDB foundation"},
|
|
|
|
|
|
|
|
/* Smaller sponsors, newer per year */
|
2014-03-28 08:31:43 +01:00
|
|
|
{"Verkkokauppa.com", "Finland", "Sponsor of the MariaDB foundation"},
|
|
|
|
{"Webyog", "Bangalor", "Sponsor of the MariaDB foundation"},
|
|
|
|
{"Percona", "USA", "Sponsor of the MariaDB foundation"},
|
2013-09-23 19:27:37 +02:00
|
|
|
{"Jelastic.com", "Russia", "Sponsor of the MariaDB foundation"},
|
|
|
|
{"Planetta.net", "Finland", "Sponsor of the MariaDB foundation"},
|
|
|
|
{"Open query", "Australia", "Sponsor of the MariaDB foundation"},
|
|
|
|
|
2014-03-28 08:31:43 +01:00
|
|
|
/* Sponsors of important features */
|
|
|
|
{"Google", "USA", "Sponsoring parallel replication and GTID" },
|
|
|
|
{"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 */
|