~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.cc

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
  Item::cleanup();
100
100
  /* Reset to the original values */
101
101
  used_tables_cache= 0;
102
 
  const_item_cache= 1;
 
102
  const_item_cache= true;
103
103
  with_null= 0;
104
104
 
105
105
  return;
118
118
void Item_row::update_used_tables()
119
119
{
120
120
  used_tables_cache= 0;
121
 
  const_item_cache= 1;
 
121
  const_item_cache= true;
122
122
  for (uint32_t i= 0; i < arg_count; i++)
123
123
  {
124
124
    items[i]->update_used_tables();
130
130
void Item_row::fix_after_pullout(Select_Lex *new_parent, Item **)
131
131
{
132
132
  used_tables_cache= 0;
133
 
  const_item_cache= 1;
 
133
  const_item_cache= true;
134
134
  for (uint32_t i= 0; i < arg_count; i++)
135
135
  {
136
136
    items[i]->fix_after_pullout(new_parent, &items[i]);