~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/cast/unsigned.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace function {
30
30
namespace cast {
31
31
 
32
 
void Unsigned::print(String *str, enum_query_type query_type)
 
32
void Unsigned::print(String *str)
33
33
{
34
34
  str->append(STRING_WITH_LEN("cast("));
35
 
  args[0]->print(str, query_type);
 
35
  args[0]->print(str);
36
36
  str->append(STRING_WITH_LEN(" as unsigned)"));
37
37
 
38
38
}