~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to sql/contributors.h

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 *comment;
 
26
};
 
27
 
 
28
/*
 
29
  Output from "SHOW CONTRIBUTORS"
 
30
 
 
31
  Get permission before editing.
 
32
 
 
33
  IMPORTANT: Names should be left in historical order.
 
34
 
 
35
  Names should be encoded using UTF-8.
 
36
*/
 
37
 
 
38
struct show_table_contributors_st show_table_contributors[]= {
 
39
  {"Ronald Bradford", "Brisbane, Australia", "EFF contribution for UC2006 Auction"},
 
40
  {"Sheeri Kritzer", "Boston, Mass. USA", "EFF contribution for UC2006 Auction"},
 
41
  {"Mark Shuttleworth", "London, UK.", "EFF contribution for UC2006 Auction"},
 
42
  {NULL, NULL, NULL}
 
43
};
 
44
 
 
45
#endif /* CONTRIBUTORS_INCLUDED */