~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
 
321
321
bool Session::add_value_to_list(Item *value)
322
322
{
323
 
  return lex().value_list.push_back(value);
 
323
        lex().value_list.push_back(value);
 
324
  return false;
324
325
}
325
326
 
326
327
bool Session::add_order_to_list(Item *item, bool asc)
398
399
 
399
400
/* Do operations that may take a long time */
400
401
 
401
 
void Session::cleanup(void)
 
402
void Session::cleanup()
402
403
{
403
404
  assert(cleanup_done == false);
404
405