~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-11-25 19:55:40 UTC
  • mto: (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1227.
  • Revision ID: brian@gaz-20091125195540-rjsdj9rx0niensaj
Remove dead "any-" case for DB name.

I wonder how easy this would be to hack... Hmm...

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
}