~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.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:
365
365
           (!my_strcasecmp(table_alias_charset, item_field->table_name,
366
366
                           table_name) &&
367
367
            (!item_field->db_name || !db_name ||
368
 
             (item_field->db_name && !strcmp(item_field->db_name,
 
368
             (item_field->db_name && !strcasecmp(item_field->db_name,
369
369
                                             db_name))))));
370
370
}
371
371