mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.3 into 10.4
This commit is contained in:
@@ -4134,7 +4134,19 @@ void Item_func_group_concat::print(String *str, enum_query_type query_type)
|
||||
}
|
||||
str->append(STRING_WITH_LEN(" separator \'"));
|
||||
str->append_for_single_quote(separator->ptr(), separator->length());
|
||||
str->append(STRING_WITH_LEN("\')"));
|
||||
str->append(STRING_WITH_LEN("\'"));
|
||||
|
||||
if (limit_clause)
|
||||
{
|
||||
str->append(STRING_WITH_LEN(" limit "));
|
||||
if (offset_limit)
|
||||
{
|
||||
offset_limit->print(str, query_type);
|
||||
str->append(',');
|
||||
}
|
||||
row_limit->print(str, query_type);
|
||||
}
|
||||
str->append(STRING_WITH_LEN(")"));
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user