~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

* Renames Ha_trx_info to drizzled::ResourceContext
* Renames Sesssion_TRANS to drizzled::TransactionContext
* Replaces homegrown linked-lists of Ha_trx_info pointers
  with vector<drizzled::ResourceContext> operations
* Renames Session::getEngineInfo() to Session::getResourceContext()

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
#include <drizzled/plugin/client.h>
53
53
 
54
54
using namespace std;
55
 
 
56
 
namespace drizzled
57
 
{
 
55
using namespace drizzled;
58
56
 
59
57
/*
60
58
  Store a new message in an error object
243
241
  session->my_eof();
244
242
  return(false);
245
243
}
246
 
 
247
 
} /* namespace drizzled */