~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2008-12-06 23:57:32 UTC
  • mfrom: (656.1.10 devel)
  • Revision ID: brian@tangent.org-20081206235732-jx228bczpvmxu8ww
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1329
1329
 
1330
1330
  /* Ensure that table handler get path in lower case */
1331
1331
  if (tmp_path != path)
1332
 
    my_stpcpy(tmp_path, path);
 
1332
    strcpy(tmp_path, path);
1333
1333
 
1334
1334
  /*
1335
1335
    we only should turn into lowercase database/table part
4153
4153
  return cmp;
4154
4154
}
4155
4155
 
4156
 
int handler::index_read_idx_map(unsigned char * buf, uint32_t index, const unsigned char * key,
 
4156
int handler::index_read_idx_map(unsigned char * buf, uint32_t index,
 
4157
                                const unsigned char * key,
4157
4158
                                key_part_map keypart_map,
4158
4159
                                enum ha_rkey_function find_flag)
4159
4160
{