~drizzle-developers/ubuntu/karmic/drizzle/ppa

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.cc

  • Committer: Monty Taylor
  • Date: 2010-11-24 18:44:57 UTC
  • mfrom: (1308.1.31 trunk)
  • Revision ID: mordred@inaugust.com-20101124184457-qd6jvoe2wgnvl3yq
Tags: 2010.11.04-0ubuntu1~karmic1
* New upstream release.
* Turn off -Werror for packaging builds. (Closes: #602662)

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
  util::insensitive_hash hasher;
271
271
  hash_value= hasher(path);
272
272
 
273
 
  key.set(getKeySize(), getSchemaName(), getTableName());
 
273
  std::string tb_name(getTableName());
 
274
  std::transform(tb_name.begin(), tb_name.end(), tb_name.begin(), ::tolower);
 
275
 
 
276
  key.set(getKeySize(), getSchemaName(), tb_name);
274
277
}
275
278
 
276
279