~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.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:
2096
2096
    check_db_name()
2097
2097
    org_name            Name of database and length
2098
2098
 
2099
 
  NOTES
2100
 
    If lower_case_table_names is set then database is converted to lower case
2101
 
 
2102
2099
  RETURN
2103
2100
    0   ok
2104
2101
    1   error
2112
2109
  if (!name_length || name_length > NAME_LEN || name[name_length - 1] == ' ')
2113
2110
    return 1;
2114
2111
 
2115
 
  if (lower_case_table_names && name != any_db)
 
2112
  if (name != any_db)
2116
2113
    my_casedn_str(files_charset_info, name);
2117
2114
 
2118
2115
  return check_identifier_name(org_name);