~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/sin.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/sin.h>
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
24
double Item_func_sin::val_real()
28
25
{
29
26
  assert(fixed == 1);
34
31
}
35
32
 
36
33
 
37
 
} /* namespace drizzled */