~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/handler0alter.cc

  • Committer: Brian Aker
  • Date: 2010-11-13 03:36:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1929.
  • Revision ID: brian@tangent.org-20101113033633-3v9ep5ow832wmf4s
Merge up the tree.

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, 2010, 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
29
29
#include <drizzled/field/varstring.h>
30
30
#include "drizzled/internal/my_sys.h"
31
31
 
 
32
extern "C" {
32
33
#include "log0log.h"
33
34
#include "row0merge.h"
34
35
#include "srv0srv.h"
36
37
#include "trx0roll.h"
37
38
#include "ha_prototypes.h"
38
39
#include "handler0alter.h"
 
40
}
39
41
 
40
42
#include "ha_innodb.h"
41
43
#include "handler0vars.h"
101
103
#ifdef UNIV_DEBUG
102
104
        case DATA_MYSQL:
103
105
                ut_ad(flen >= len);
104
 
                ut_ad(DATA_MBMAXLEN(col->mbminmaxlen)
105
 
                      >= DATA_MBMINLEN(col->mbminmaxlen));
106
 
                ut_ad(DATA_MBMAXLEN(col->mbminmaxlen)
107
 
                      > DATA_MBMINLEN(col->mbminmaxlen) || flen == len);
 
106
                ut_ad(col->mbmaxlen >= col->mbminlen);
 
107
                ut_ad(col->mbmaxlen > col->mbminlen || flen == len);
108
108
                memcpy(dest, data, len);
109
109
                break;
110
110
 
130
130
 
131
131
/*************************************************************//**
132
132
Copies an InnoDB record to table->getInsertRecord(). */
133
 
UNIV_INTERN
 
133
extern "C" UNIV_INTERN
134
134
void
135
135
innobase_rec_to_mysql(
136
136
/*==================*/
180
180
 
181
181
/*************************************************************//**
182
182
Resets table->getInsertRecord(). */
183
 
UNIV_INTERN
 
183
extern "C" UNIV_INTERN
184
184
void
185
185
innobase_rec_reset(
186
186
/*===============*/
887
887
                prebuilt->trx->error_info = NULL;
888
888
                /* fall through */
889
889
        default:
890
 
                trx->error_state = DB_SUCCESS;
891
 
 
892
890
                if (new_primary) {
893
891
                        if (indexed_table != innodb_table) {
894
892
                                row_merge_drop_table(trx, indexed_table);
1005
1003
                index->to_be_dropped = TRUE;
1006
1004
        }
1007
1005
 
1008
 
        /* If FOREIGN_KEY_CHECKS = 1 you may not drop an index defined
 
1006
        /* If FOREIGN_KEY_CHECK = 1 you may not drop an index defined
1009
1007
        for a foreign key constraint because InnoDB requires that both
1010
 
        tables contain indexes for the constraint. Such index can
1011
 
        be dropped only if FOREIGN_KEY_CHECKS is set to 0.
1012
 
        Note that CREATE INDEX id ON table does a CREATE INDEX and
1013
 
        DROP INDEX, and we can ignore here foreign keys because a
1014
 
        new index for the foreign key has already been created.
 
1008
        tables contain indexes for the constraint.  Note that CREATE
 
1009
        INDEX id ON table does a CREATE INDEX and DROP INDEX, and we
 
1010
        can ignore here foreign keys because a new index for the
 
1011
        foreign key has already been created.
1015
1012
 
1016
1013
        We check for the foreign key constraints after marking the
1017
1014
        candidate indexes for deletion, because when we check for an