~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.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:
33
33
#include <limits>
34
34
#include <algorithm>
35
35
 
 
36
using namespace drizzled;
36
37
using namespace std;
37
38
 
38
 
namespace drizzled
39
 
{
40
 
 
41
 
 
42
39
void Item_func::set_arguments(List<Item> &list)
43
40
{
44
41
  allowed_arg_cols= 1;
632
629
}
633
630
 
634
631
 
635
 
} /* namespace drizzled */