~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/abs.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:
21
21
#include <math.h>
22
22
#include <drizzled/function/math/abs.h>
23
23
 
24
 
namespace drizzled
25
 
{
26
24
 
27
25
double Item_func_abs::real_op()
28
26
{
61
59
  unsigned_flag= args[0]->unsigned_flag;
62
60
}
63
61
 
64
 
} /* namespace drizzled */