~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/handler0alter.h

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 2005, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 2005, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
16
16
 
17
17
*****************************************************************************/
18
18
 
19
 
namespace drizzled
20
 
{
21
 
class Table;
22
 
}
23
 
 
24
19
/**************************************************//**
25
20
@file include/handler0alter.h
26
21
Smart ALTER TABLE
32
27
void
33
28
innobase_rec_to_mysql(
34
29
/*==================*/
35
 
        ::drizzled::Table*              table,          /*!< in/out: MySQL table */
 
30
        TABLE*                  table,          /*!< in/out: MySQL table */
36
31
        const rec_t*            rec,            /*!< in: record */
37
32
        const dict_index_t*     index,          /*!< in: index */
38
33
        const ulint*            offsets);       /*!< in: rec_get_offsets(
44
39
void
45
40
innobase_rec_reset(
46
41
/*===============*/
47
 
        ::drizzled::Table*              table);         /*!< in/out: MySQL table */
 
42
        TABLE*                  table);         /*!< in/out: MySQL table */