~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/execute.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:
56
56
    // We set the current schema.  @todo do the same with catalog
57
57
    util::string::ptr schema(_session.schema());
58
58
    if (not schema->empty())
59
 
      new_session->set_db(*schema);
 
59
      new_session->set_schema(*schema);
60
60
    
61
61
    new_session->setConcurrentExecute(false);
62
62
    
117
117
    // We set the current schema.  @todo do the same with catalog
118
118
    util::string::ptr schema(_session.schema());
119
119
    if (not schema->empty())
120
 
      new_session->set_db(*schema);
 
120
      new_session->set_schema(*schema);
121
121
 
122
122
    new_session->setConcurrentExecute(false);
123
123