[BUGFIX]repeat return error when input length is larger than max_allow_packet

This commit is contained in:
obdev
2022-11-02 19:43:19 +00:00
committed by wangzelin.wzl
parent 88ec965bc2
commit 477f4cd149
3 changed files with 4 additions and 7 deletions

View File

@ -30,6 +30,7 @@ select repeat("abc", NULL);
select repeat(1.414, 1);
select repeat(1.414, 2);
--error 1301
select repeat("abc", 200000000);
--enable_warnings