~ubuntu-branches/ubuntu/raring/drizzle/raring

« back to all changes in this revision

Viewing changes to drizzled/item/cache.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-eaf0hvlytjdl4zrf
Tags: 2011.03.13-0ubuntu1
* New upstream release.
* Added slave plugin.
* Removed archive, blackhole and blitzdb plugins.
* Moved location of libdrizzle headers.
* Removed drizzleadmin manpage patch.
* Add drizzle_safe_write_string to symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
}
56
56
 
57
57
 
58
 
void Item_cache::print(String *str, enum_query_type query_type)
 
58
void Item_cache::print(String *str)
59
59
{
60
60
  str->append(STRING_WITH_LEN("<cache>("));
61
61
  if (example)
62
 
    example->print(str, query_type);
 
62
    example->print(str);
63
63
  else
64
 
    Item::print(str, query_type);
 
64
    Item::print(str);
65
65
  str->append(')');
66
66
}
67
67