~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/binary.cc

  • Committer: Lee Bieber
  • Date: 2011-03-03 19:19:28 UTC
  • mfrom: (2216.1.3 build)
  • Revision ID: kalebral@gmail.com-20110303191928-h2kris5kavbgmzu0
Merge Shrews - 728432: Remove write_bin_log() since it is no longer used.
Merge Andrew - 722988: wrong message for drizzled --verbose 
Merge Andrew - 728314: mysql socket file not created
Merge Stewart - 728288: enum_query_type is unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
namespace drizzled
25
25
{
26
26
 
27
 
void Item_func_binary::print(String *str, enum_query_type query_type)
 
27
void Item_func_binary::print(String *str)
28
28
{
29
29
  str->append(STRING_WITH_LEN("cast("));
30
 
  args[0]->print(str, query_type);
 
30
  args[0]->print(str);
31
31
  str->append(STRING_WITH_LEN(" as binary)"));
32
32
}
33
33