~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.cc

  • Committer: Brian Aker
  • Date: 2010-10-23 22:28:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1875.
  • Revision ID: brian@tangent.org-20101023222830-em4idhbau96l37zt
Encapsulate schema_name it table_list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
699
699
    {
700
700
      Item_ref *rf;
701
701
      rf= new Item_ref(context,
702
 
                       (cached_table->db[0] ? cached_table->db : 0),
 
702
                       (cached_table->getSchemaName()[0] ? cached_table->getSchemaName() : 0),
703
703
                       (char*) cached_table->alias, (char*) field_name);
704
704
      if (!rf)
705
705
        return -1;