~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Tags: innodb-plugin-1.0.1
Imported 1.0.1 with clean - with no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
Smart ALTER TABLE
 
3
 
 
4
(c) 2005-2007 Innobase Oy
 
5
*******************************************************/
 
6
 
 
7
/*****************************************************************
 
8
Copies an InnoDB record to table->record[0]. */
 
9
UNIV_INTERN
 
10
void
 
11
innobase_rec_to_mysql(
 
12
/*==================*/
 
13
        TABLE*                  table,          /* in/out: MySQL table */
 
14
        const rec_t*            rec,            /* in: record */
 
15
        const dict_index_t*     index,          /* in: index */
 
16
        const ulint*            offsets);       /* in: rec_get_offsets(
 
17
                                                rec, index, ...) */
 
18
 
 
19
/*****************************************************************
 
20
Resets table->record[0]. */
 
21
UNIV_INTERN
 
22
void
 
23
innobase_rec_reset(
 
24
/*===============*/
 
25
        TABLE*                  table);         /* in/out: MySQL table */