~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/schema.cc

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
    it to 0.
246
246
  */
247
247
  if (not error and schema_identifier.compare(*session.schema()))
248
 
    session.set_db("");
 
248
    session.set_schema("");
249
249
 
250
250
  session.startWaitingGlobalReadLock();
251
251
 
339
339
    return true;
340
340
  }
341
341
 
342
 
  session.set_db(schema_identifier.getSchemaName());
 
342
  session.set_schema(schema_identifier.getSchemaName());
343
343
 
344
344
  return false;
345
345
}