1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BUG #12101: Additional fix.

This commit is contained in:
aivanov@mysql.com
2005-09-09 19:06:15 +04:00
parent 7cc0639f59
commit 5eae17bc3c

View File

@ -983,6 +983,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);
@ -1969,6 +1971,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);