~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

  • Committer: Brian Aker
  • Date: 2010-09-12 01:42:27 UTC
  • mto: (1759.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1762.
  • Revision ID: brian@tangent.org-20100912014227-krt6d9z5ohqrokhb
Add two plugins to handle the string and math functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/* This file should be included when using myisam_funktions */
17
17
 
18
18
#ifndef PLUGIN_MYISAM_MYISAM_H
19
19
#define PLUGIN_MYISAM_MYISAM_H
20
20
 
21
 
#include "drizzled/identifier/table.h"
22
 
 
23
21
#include <drizzled/key_map.h>
24
22
 
25
23
#include <drizzled/base.h>
277
275
 
278
276
extern int mi_close(struct st_myisam_info *file);
279
277
extern int mi_delete(struct st_myisam_info *file,const unsigned char *buff);
280
 
extern struct st_myisam_info *mi_open(const drizzled::TableIdentifier &identifier,
281
 
                                      int mode,
 
278
extern struct st_myisam_info *mi_open(const char *name,int mode,
282
279
                                      uint32_t wait_if_locked);
283
280
extern int mi_panic(enum drizzled::ha_panic_function function);
284
281
extern int mi_rfirst(struct st_myisam_info *file,unsigned char *buf,int inx);