From: Date: March 8 2006 5:46pm Subject: bk commit into 5.1 tree (acurtis:1.2211) List-Archive: http://lists.mysql.com/commits/3594 Message-Id: <200603081646.k28Gk8d4030995@mail.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of antony. When antony does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2211 06/03/08 08:45:57 acurtis@stripped +1 -0 missing file sql/sql_builtin.cc.in 1.1 06/03/08 08:45:53 acurtis@stripped +32 -0 New BitKeeper file ``sql/sql_builtin.cc.in'' sql/sql_builtin.cc.in 1.0 06/03/08 08:45:53 acurtis@stripped +0 -0 BitKeeper file /home/antony/work2/mysql-5.1-plugable.5/sql/sql_builtin.cc.in # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: acurtis # Host: localhost.(none) # Root: /home/antony/work2/mysql-5.1-plugable.5 --- New file --- +++ sql/sql_builtin.cc.in 06/03/08 08:45:53 /* Copyright (C) 2006 MySQL AB 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 the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include typedef struct st_mysql_plugin mysql_plugin_t[]; extern mysql_plugin_t builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, @mysql_builtin_plugins@ builtin_binlog_plugin; struct st_mysql_plugin *mysqld_builtins[]= { builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, builtin_binlog_plugin, @mysql_builtin_plugins@ NULL };