~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/default_value.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/name_resolution_context.h>
24
24
#include <drizzled/table.h>
25
25
#include <drizzled/session.h>
 
26
#include <drizzled/current_session.h>
26
27
#include <drizzled/item/default_value.h>
27
28
 
28
29
namespace drizzled
138
139
    change records at each execution.
139
140
  */
140
141
  if (arg != new_item)
141
 
    getSession().change_item_tree(&arg, new_item);
142
 
 
 
142
    current_session->change_item_tree(&arg, new_item);
143
143
  return (this->*transformer)(args);
144
144
}
145
145