~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-05-27 21:11:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1040.
  • Revision ID: brian@gaz-20090527211130-10yq3d5gee3pwl9w
Remove lower case filename bits (aka we just lock into the most compatible
method, which is what we have been doing).

Removed a number of dead function endings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5594
5594
 
5595
5595
        trx = innobase_trx_allocate(session);
5596
5596
 
5597
 
        if (lower_case_table_names) {
5598
 
                srv_lower_case_table_names = TRUE;
5599
 
        } else {
5600
 
                srv_lower_case_table_names = FALSE;
5601
 
        }
 
5597
        srv_lower_case_table_names = TRUE;
5602
5598
 
5603
5599
        strcpy(name2, name);
5604
5600
 
5990
5986
 
5991
5987
        trx = innobase_trx_allocate(session);
5992
5988
 
5993
 
        if (lower_case_table_names) {
5994
 
                srv_lower_case_table_names = TRUE;
5995
 
        } else {
5996
 
                srv_lower_case_table_names = FALSE;
5997
 
        }
 
5989
        srv_lower_case_table_names = TRUE;
5998
5990
 
5999
5991
        name_len = strlen(name);
6000
5992
 
6119
6111
        char*   norm_to;
6120
6112
        char*   norm_from;
6121
6113
 
6122
 
        if (lower_case_table_names) {
6123
 
                srv_lower_case_table_names = TRUE;
6124
 
        } else {
6125
 
                srv_lower_case_table_names = FALSE;
6126
 
        }
 
6114
        srv_lower_case_table_names = TRUE;
6127
6115
 
6128
6116
        // Magic number 64 arbitrary
6129
6117
        norm_to = (char*) malloc(strlen(to) + 64);