~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
{
87
87
  return length == other.length &&
88
88
         field_name.length == other.field_name.length &&
89
 
         !strcmp(field_name.str, other.field_name.str);
 
89
    !my_strcasecmp(system_charset_info, field_name.str, other.field_name.str);
90
90
}
91
91
 
92
92
Open_tables_state::Open_tables_state(uint64_t version_arg) :