~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
369
369
}
370
370
 
371
371
 
372
 
void Item_ref::print(String *str, enum_query_type query_type)
 
372
void Item_ref::print(String *str)
373
373
{
374
374
  if (ref)
375
375
  {
379
379
      str->append_identifier(name, (uint32_t) strlen(name));
380
380
    }
381
381
    else
382
 
      (*ref)->print(str, query_type);
 
382
      (*ref)->print(str);
383
383
  }
384
384
  else
385
 
    Item_ident::print(str, query_type);
 
385
    Item_ident::print(str);
386
386
}
387
387
 
388
388