~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/format.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:
24
24
 
25
25
using namespace std;
26
26
 
27
 
namespace drizzled
28
 
{
29
 
 
30
27
/**
31
28
  Change a number to format '3,333,333,333.000'.
32
29
 
139
136
  args[1]->print(str, query_type);
140
137
  str->append(')');
141
138
}
142
 
 
143
 
} /* namespace drizzled */