~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee
  • Date: 2008-10-30 22:02:01 UTC
  • mto: (572.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: lbieber@lbieber-desktop-20081030220201-elb6qprbzpn7c5a4
add my name to the AUTHORS file

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