~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

Modest update to drop schema.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4464
4464
  for (uint32_t idx=0 ; idx < open_cache.records ; idx++)
4465
4465
  {
4466
4466
    Table *table=(Table*) hash_element(&open_cache,idx);
4467
 
    if (!strcmp(table->s->db.str, db))
 
4467
    if (not strcmp(table->s->db.str, db))
4468
4468
    {
4469
4469
      table->s->version= 0L;                    /* Free when thread is ready */
4470
 
      if (!table->in_use)
 
4470
      if (not table->in_use)
4471
4471
        relink_unused(table);
4472
4472
    }
4473
4473
  }