Commit c34922c7 authored by unknown's avatar unknown
Browse files

Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0

into mysql.com:/home/psergey/mysql-5.0-merge

parents 9ff63ae1 d3837c79
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1169,6 +1169,8 @@ void Item_func_between::print(String *str)
{
  str->append('(');
  args[0]->print(str);
  if (negated)
    str->append(" not", 4);
  str->append(" between ", 9);
  args[1]->print(str);
  str->append(" and ", 5);
@@ -2411,6 +2413,8 @@ void Item_func_in::print(String *str)
{
  str->append('(');
  args[0]->print(str);
  if (negated)
    str->append(" not", 4);
  str->append(" in (", 5);
  print_args(str, 1);
  str->append("))", 2);