~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field_iterator.cc

  • Committer: Brian Aker
  • Date: 2009-11-29 06:59:57 UTC
  • mfrom: (1225.1.35 figure)
  • mto: This revision was merged to the branch mainline in revision 1256.
  • Revision ID: brian@gaz-20091129065957-nngh4bccsq4ypmwx
MergeĀ PadraigĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
 
139
139
  /*
140
140
    Test that TableList::db is the same as TableShare::db to
141
 
    ensure consistency. An exception are I_S schema tables, which
142
 
    are inconsistent in this respect.
 
141
    ensure consistency. 
143
142
  */
144
 
  assert(!strcmp(table_ref->db, table_ref->table->s->db.str) ||
145
 
              (table_ref->schema_table &&
146
 
               table_ref->table->s->db.str[0] == 0));
147
 
 
 
143
  assert(!strcmp(table_ref->db, table_ref->table->s->db.str));
148
144
  return table_ref->db;
149
145
}
150
146