~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-11-26 18:48:20 UTC
  • mfrom: (1226.1.3 push)
  • Revision ID: brian@gaz-20091126184820-hltr0upee0ahopsj
Bundle Brian + Monty  (been through staging, just collecting it as want
overall patch as seen by staging).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1877
1877
  if (!name_length || name_length > NAME_LEN || name[name_length - 1] == ' ')
1878
1878
    return 1;
1879
1879
 
1880
 
  if (name != any_db)
1881
 
    my_casedn_str(files_charset_info, name);
 
1880
  my_casedn_str(files_charset_info, name);
1882
1881
 
1883
1882
  return check_identifier_name(org_name);
1884
1883
}