~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

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 */