~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field_iterator.cc

  • Committer: Brian Aker
  • Date: 2010-03-15 23:01:12 UTC
  • mfrom: (1340.1.3 build)
  • Revision ID: brian@gaz-20100315230112-nxceak3poxjdh2hv
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
    Test that TableList::db is the same as TableShare::db to
144
144
    ensure consistency. 
145
145
  */
146
 
  assert(!strcmp(table_ref->db, table_ref->table->s->db.str));
 
146
  assert(!strcmp(table_ref->db, table_ref->table->s->getSchemaName()));
147
147
  return table_ref->db;
148
148
}
149
149