~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2010-03-31 05:53:34 UTC
  • Revision ID: brian@gaz-20100331055334-yqqmzlgqb2xq1p5b
Mass overhaul to use schema_identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
906
906
        if (cur_field->db_name && db_name)
907
907
        {
908
908
          /* If field_name is also qualified by a database name. */
909
 
          if (strcmp(cur_field->db_name, db_name))
 
909
          if (strcasecmp(cur_field->db_name, db_name))
910
910
            /* Same field names, different databases. */
911
911
            return NULL;
912
912
          ++cur_match_degree;