1
/* Copyright (C) 2005 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
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.
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
17
21
#ifndef PLUGIN_INFORMATION_ENGINE_INFORMATION_ENGINE_H
18
22
#define PLUGIN_INFORMATION_ENGINE_INFORMATION_ENGINE_H
33
37
: drizzled::plugin::StorageEngine(name_arg,
34
38
HTON_ALTER_NOT_SUPPORTED |
36
HTON_NOT_USER_SELECTABLE |
37
40
HTON_TEMPORARY_NOT_SUPPORTED)
39
42
pthread_mutex_init(&mutex, NULL);
119
* Set the I_S table associated with this share.
120
* @param[in] name the name of the I_S table
122
void setInfoSchemaTable(const std::string &name)
124
table= drizzled::plugin::InfoSchemaTable::getTable(name.c_str());
110
128
* @return the I_S table associated with this share.
112
130
drizzled::plugin::InfoSchemaTable *getInfoSchemaTable()